0
次のコードは、この特定の方法で、ポリラインで同じ長方形の属性を設定するとか、変更しなければならないと言っていることを知っていますか?ポリラインポイントで属性を設定する
function newer() {
document.getElementById("rectangle").setAttribute('width',"70");
}
ポリライン用のフォローコードが好きですか他の方法ですか?我々はSVGポリライン(http://www.w3schools.com/svg/svg_polyline.asp)の話をしていると仮定すると、
function new() {
document.getElementById("polyline1").setAttribute('points', "0,0 200,0 200,200 100,200 100,100 0,100 0,0");
}