私は動的に div を作成しており、それらを最後の位置ではなくランダムな位置で親 div に追加したいと考えています。
var opt = document.createElement("div");
var txt = document.createTextNode(str);
opt.appendChild(txt);
//get the top and left positioning of the elements
var x = Math.floor(Math.random() * (400));
var y = Math.floor(Math.random() * (50));
opt.style.top = y + "px";
opt.style.left = x + "px";
opt.style.zIndex = zindex;
$("#parentDiv").append(opt);
しかし問題は、jquery の append 関数または add 関数が div をスタックの最後の位置に置くことです。他のdivの間にランダムに配置したい...助けて