執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往Spaces
<!DOCTYPE html> <html> <body> <h2>SVG script Element</h2> <svg width="200" height="100" xmlns="http://www.w3.org/2000/svg"> <circle id="circle2" cx="50" cy="50" r="25" style="fill:red;" /> Sorry, your browser does not support inline SVG. </svg> <input type="button" value="Change Style" onclick="changeStyle()" /> <script> function changeStyle() { document.getElementById("circle2").style.fill="green"; } </script> </body> </html>