onload
onload 事件会在页面或图像加载完成后立即发生。
onload="SomeJavaScriptCode"
参数 | 描述 |
SomeJavaScriptCode | 必需。规定该事件发生时执行的 JavaScript。 |
<body>
, <frame>
, <frameset>
, <iframe>
, <img>
, <link>
, <script>
image, layer, window
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
</head>
<body onload="load()">
<h1>Welcome to Fishc.com</h1>
<script>
function load()
{
alert("页面已加载!");
}
</script>
</body>
</html>