Javascript DOM3

2293 단어
<!DOCTYPE html>
<html>
  <head>
    <title>Javascript DOM  03</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">
		var timeid;
        function windowMethodDemo() {
            //var b = confirm("         ?");
            //alert("b=" + b);
 
            //setTimeout("alert('time out run')", 4000);
            //setInterval("alert('interval run')", 3000);
            timeid = setInterval("alert('interval run')", 3000);
        }
 
        function stopTime() {
            clearInterval(timeid);
        }
 
        function windowMove() {
            moveBy(10,10);
            moveTo(40,40);
            for (var x = 0; x < 700; x++) {
                moveBy(20, 0);
                moveBy(0, 20);
                moveBy(-20, 0);
                moveBy(0, -20);
            }
        }
 
        function windowOpen() {
            open("ad.html", "_blank", "height=400,width=400,status=no,toolbar=no,menubar=no,location=no");
            //close();
        }
        </script>
 
 		<input type="button" value="  window     1" onclick="windowMethodDemo()" />
        <input type="button" value="  window     2" onclick="windowOpen()" />
        <input type="button" value="  " onclick="stopTime()" />
  </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>		
  </body>
</html>

좋은 웹페이지 즐겨찾기