zoukankan      html  css  js  c++  java
  • getElementByTagName的使用

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>getElementByTagName的使用</title>
    <style type="text/css">
    .dd1 {
    	color: red;
    }
    
    .dd2 {
    	color: blue;
    }
    </style>
    <script type="text/javascript">
    	function changeColor() {
    
    		var obj1, num, i;
    		obj1 = document.getElementById("s1").getElementsByTagName("a");
    		num = document.getElementById("s1").getElementsByTagName("a").length;
    		for (i = 0; i < num; i++) {
    			obj1[i].className = "dd2";
    		}
    	}
    </script>
    </head>
    <body>
    	<div id="s1" onmouseover="changeColor()">
    		<a href="http://www.jb51.net/article/ddd" class="dd1">dfdfd</a> <a
    			href="http://www.jb51.net/article/ddd" class="dd1">dfdfd</a> <a
    			href="http://www.jb51.net/article/ddd" class="dd1">dfdfd</a>
    	</div>
    </body>
    </html>
    

      

  • 相关阅读:
    VMware安装Centos7过程记载
    php服务器设置指示
    php变化变量
    php参数
    php变量类型
    php外界PHP变量
    php语句的脱离方法
    PHP算术操作符
    PHP通过调用传递(Passingbyreference)
    php初始化数组
  • 原文地址:https://www.cnblogs.com/hhls/p/5657258.html
Copyright © 2011-2022 走看看