使用jquery在dom中插入html。一切工作正常,現在我需要複製一個元素4次,我不知道如何。需要使用jquery複製DOM中的同一元素4次使用jquery
這是我如何使用Jquery將元素插入DOM。
function Pin(caixaPin){
var $temp;
$temp = $("<div></div>");
$temp.addClass("caixaPin");
$temp.html(caixaPin);
$("body").append($temp);
}
Pin('<div></div>');
謝謝!!
內引腳功能' – guradio