onload事件是在整个页面窗口加载完成之后触发,防止JS在前,标签在后,当JS执行时,标签没有加载完成时而引发的错误。
所以,在编程过程中我们常常会将js代码写到onload事件里面。
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
姓名:<input type="text" name="username">
<script type="text/javascript">
//整个页面窗口加载完成之后(所有标签加载完成)
window.onload = function(){
//将JS代码写在这里。
// 防止JS在前,标签在后,当JS执行时,标签没有加载完成时而引发的错误
console.log('页面元素加载完成了')
}
</script>
</body>
</html>
|