Javascript DOM4

<!DOCTYPE html>
<html>
  <head>
    <title>Javascript DOM语法04</title>
	
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=UTF-8">
  </head>
  
  <body>
		<script type="text/javascript">
		/* 
		onunload = function() {
			alert("onunload run");
		}

		onload = function() {
			alert("onload run");
		}

		onbeforeunload = function() {
			alert("onbeforeunload run");
		} 
		*/
		
		onload = function() {
			window.status = "啊!,加载完毕啦";
		}
		</script>
		

  </body>
</html>

练习:

<!DOCTYPE html>
<html>
  <head>
    <title>Javascript DOM练习01</title>
	
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=UTF-8">
  </head>
  
  <body>
		<script type="text/javascript">
		/*
		 * 演示弹窗广告效果。
		 * 
		 * 页面一加载完就执行。 
		 * 
		 * 在当前页面定义脚本,可以在onload事件中完成广告的弹窗。
		 */
		onload = function(){
			open("/ad.html","_blank","height=400,width=400,status=no,toolbar=no,menubar=no,location=no");
		}
		</script>
  </body>
</html>
<!DOCTYPE html>
<html>
  <head>
    <title>AD</title>
	
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=UTF-8">
  </head>
	<body>
		<h1>特价大优惠!</h1>
		<h2>什么东西便宜了呢!!</h2>
		<h1>你猜!</h1>
		<script type="text/javascript">
		//setTimeout("close()",3000);
		onunload = function() {
			open("ad.html", "_blank", "height=400,width=400,status=no,toolbar=no,menubar=no,location=no");
		}
		setInterval("focus()",1000);
		</script>
	</body>
</html>


你可能感兴趣的:(Javascript DOM4)