ボタンをクリックしたときに高さまたは幅を変更したい。私はこれを試しますが動作しません:
function modify(){
document.getElementById('cercle1').style.height = "10px";
document.getElementById('cercle1').style.width = "10px";
}
SVGでは、<rect>
要素の幅と高さは属性であり、CSSプロパティではないため、次のように記述する必要があります。
document.getElementById('cercle1').setAttribute("height", "10px");
幅についても同様です。