獲取特定div內的所有元素並將其顯示爲與其他div相同。 裏面的內容是動態的。 我想克隆的所有元素中 即克隆div內的所有元素和內容並將其顯示到另一個div中
<div id="div_preview">
<br>
2 php Developer ?<br>
<input type="checkbox" name="chk_0" value="a">
a
<input type="checkbox" name="chk_1" value="b">
b
<input type="checkbox" name="chk_2" value="c">
c
</div>
from <div id="div_preview"> and display it to <div id='other_div'></div>
使O/P
<br>
2 php Developer ?<br>
<input type="checkbox" name="chk_0" value="a">
a
<input type="checkbox" name="chk_1" value="b">
b
<input type="checkbox" name="chk_2" value="c">
c
'jQuery.clone()appendTo(TARGET_ELEMENT)' – Rayon
對了,是不是這樣工作了? – Utkanos
,但它也將克隆div'div_preview'我想要內容id ='div_preview' – Ron