10/10/2018, 11:16
giúp chút về clone của jquery
em có select box thế này
<select id="angle" name="angle">
<option value="1">Right</option>
<option value="2">Left</option>
<option value="3">Center</option>
</select>
em muốn dùng jquery clone và append nó vào ngay sau thẻ <b> của thẻ div sau và selectbox phải có value 2 được selected
<div id="abcd">
<b>test123</b>
</div>
nghĩa là nó sẽ thành như thế này
<div id="abcd">
<b>test123</b>
<select id="angle" name="angle">
<option value="1">Right</option>
<option value="2" selected="selected">Left</option>
<option value="3">Center</option>
</select>
</div>
anh nào pro jquery giúp em với
<select id="angle" name="angle">
<option value="1">Right</option>
<option value="2">Left</option>
<option value="3">Center</option>
</select>
em muốn dùng jquery clone và append nó vào ngay sau thẻ <b> của thẻ div sau và selectbox phải có value 2 được selected
<div id="abcd">
<b>test123</b>
</div>
nghĩa là nó sẽ thành như thế này
<div id="abcd">
<b>test123</b>
<select id="angle" name="angle">
<option value="1">Right</option>
<option value="2" selected="selected">Left</option>
<option value="3">Center</option>
</select>
</div>
anh nào pro jquery giúp em với
Bài liên quan
var str = '<select id="angle" name="angle">
<option value="1">Right</option>
<option value="2">Left</option>
<option value="3">Center</option>
</select>';
$("abcd > b").after(str);
bác ơi chính là em ko muốn dùng đến cái viết chuỗi str đó ,em muốn xài clone nó đó bác,vì cái select box có thể tăng thêm các options
Cám ơn các bác