嗨,有人可以幫助我獲得按鈕來調整形狀。我已經自己去了,但無法讓它工作。下面是我的代碼必須事先到目前爲止感謝輸入按鈕來調整形狀
<html>
<head>
<script>
function Smaller()
{
document.getElementById("rectangle1").height="50";
document.getElementById("rectangle1").width="50";
}
function resetsize()
{
document.getElementById("rectangle1").height="200";
document.getElementById("rectangle1").width="300";
}
</script>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" style="width: 500px; height: 500px">
<rect id="rectangle1" x="150" y="0" width="300" height="200" />
</svg>
<input type="button" onclick="Smaller" value="Smaller" />
<input type="button" onclick="resetsize" value="ResetSize" />
</body>
</html>
你嘗試我所提供的代碼。有用! – 2012-04-13 12:59:01