我是jQuery的新手,很抱歉提出這個問題。我需要有.translatable
類中的每個元素,只是在頁面加載,只是一個時間後添加一個新的<div>
元素:jQuery如何在選擇的每個元素之後注入一個新元素?
$(document).ready(function(){
// Something like this would be perfect
$(".translatable").appendRighAfter("<div></div>");
});
我知道我應該使用append()
,但我沒有父容器要追加到。謝謝。