admin管理员组文章数量:1345477
I am trying to add two div elements to my html body, I start by creating the div elements assigning a unique id and storing them in two variables.
var a = $('div').attr('id', 'container');
var b= $('div').attr('id', 'selectable');
$(a).appendTo('body');
$(b).appendTo('body);
The problem is when I add them to the body, I notice only one div element is actually being appended to the body. Upon further inspection, I noticed that the content in variable b is being copied to variable a, so variable a and b both refer to the same div with ID selectable.
How do I create two unique div elements to be appended to the html body?
I am trying to add two div elements to my html body, I start by creating the div elements assigning a unique id and storing them in two variables.
var a = $('div').attr('id', 'container');
var b= $('div').attr('id', 'selectable');
$(a).appendTo('body');
$(b).appendTo('body);
The problem is when I add them to the body, I notice only one div element is actually being appended to the body. Upon further inspection, I noticed that the content in variable b is being copied to variable a, so variable a and b both refer to the same div with ID selectable.
How do I create two unique div elements to be appended to the html body?
Share Improve this question asked Oct 2, 2013 at 20:56 lboyellboyel 2,2384 gold badges29 silver badges38 bronze badges 1-
2
$('<div />', {id:'container'})
– adeneo Commented Oct 2, 2013 at 21:03
3 Answers
Reset to default 9You are selecting divs, not creating them.
var a = $('div').attr('id', 'container');
var b = $('div').attr('id', 'selectable');
Should be:
var a = $('<div/>').attr('id', 'container');
var b = $('<div/>').attr('id', 'selectable');
This searches the dom for all div elements:
$('div');
So the following code is applying the id of 'selectable' to all div elements.
var a = $('div').attr('id', 'container');
var b = $('div').attr('id', 'selectable');
To create an element in jQuery, you need to have a string that begins with '<'. To get the result you want, you probably want to do the following:
var a = $('<div/>').attr('id', 'container');
a.appendTo('body');
You could also do:
var a = $('<div id="container" />').appendTo('body');
Quick hack?
This code SELECTS matching elements from the DOM
var a = $('div').attr('id', 'container');
To store a certain div in a variable, use jQuery's .clone();
method.
So for example
var div_copy = $('div').clone(); //Saved for later use
本文标签: javascriptStoring html elements created by Jquery in variableStack Overflow
版权声明:本文标题:javascript - Storing html elements created by Jquery in variable - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743798922a2540945.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论