如果我克隆一個元素,那麼如果我想自定義該元素(由id
)如何定製克隆的元素?如果我克隆一個元素,當我定製(CSS)該元素如何可以定製克隆的元素?
我的嘗試:
<div id="A"> //the element that will be clone
</div>
<div id="box" style="margin-top: 50px"> //into this box
</div>
CSS
#A{
width: 100px;
height: 100px;
background: #000;
}
JS
$('#A').clone(true).appendTo('#box');
$('#A').css('background','#ff0000');
//i want to get red background also to element cloned, infact only the true original element change color :/
這是的jsfiddle:https://jsfiddle.net/t90ptkcz/1/
我希望這是可能的,你可以幫助米即非常感謝和抱歉,我的英語水平:)
更改訂單。首先申請CSS然後做克隆。 –
您將需要更改克隆元素的'id'屬性,因爲在文檔中id必須是唯一的。如果您想將元素分組在一起,請使用一個類。 –