我知道下面的代码会以这种特殊的方式设置,说明矩形宽度的set属性对于折线是否相同,或者你必须改变它吗?
function newer() {
document.getElementById("rectangle").setAttribute('width',"70");
}
它会像折线的下面的代码一样,还是会以其他方式?
function new() {
document.getElementById("polyline1").setAttribute('points', "0,0 200,0 200,200 100,200 100,100 0,100 0,0" );
}
答案 0 :(得分:1)
假设我们正在讨论SVG折线(http://www.w3schools.com/svg/svg_polyline.asp),那么点是一个属性,“0,0 200,0 200,200 100,200 100,100 0,100 0,0”是atttirbute值。
是的。