运行 ❯
获取您
自有
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <script> function myFunction() { alert("Image loaded: " + document.getElementById("myImg").complete); } </script> </head> <body onload="myFunction()"> <p>This property returns true if the image is finished loaded, and false if not.</p> <img id="myImg" src="compman.gif" alt="Computerman" width="107" height="98"> </body> </html>