vml 要素 v:shape を作成し、スタイルと属性を追加してから追加します。
var shape = document.createElement("v:shape");
//some attrs
shape.setAttribute("coordorigin", "0 0");
shape.setAttribute("coordsize", w + " " + h);
shape.setAttribute("stroked", "false");
//...
//some styles
shape.style.position = "absolute";
shape.style.top = 0 + "px";
shape.style.left = 0 + "px";
shape.style.width = w + "px";
shape.style.height = h + "px";
//...
$(element).append(shape);
そして、同じ形状を別の場所に追加したい
var shape2 = $(shape).clone(true);
ただし、スタイルのみを複製します
alert(shape2.css("position")); // absolute
alert(shape2.attr("coordsize")); // undefined
どうすればいいですか?
助けvar element = document.createElement("p");
てください
。$(selector).each(function(index, element) {
_仕事(