实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function loadImage()
6
{
7
alert("Image is loaded");
8
}
9
</script>
10
</head>
11
12
<body>
13
<img src="logo.png" onload="loadImage()" width="336" height="36">
14
</body>
15
</html>
16