运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <img id="myImg" src="w3javascript.gif" style="width:100px;height:132px;"> <br> <button type="button" onclick="myFunction()">Return width of image</button> <script> function myFunction() { alert(document.getElementById("myImg").style.width); } </script> </body> </html>