Home > Web Front-end > JS Tutorial > Use of javascript getElementByTagName_javascript skills

Use of javascript getElementByTagName_javascript skills

PHP中文网
Release: 2016-05-16 18:51:39
Original
1565 people have browsed it

Usage of javascript getElementByTagName_javascript skills

<!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>javascript getElementByTagName的使用</title> 
<style type="text/css"> 
.dd1{ color:#FF0000; 
} 
.dd2{ color:blue; 
} 
</style> 
<script type="text/javascript"> 
function changeColor() 
{ 
//document.getElementById("s1").getElementsByTagName("a").className="dd2"; 
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="ddd" class="dd1">dfdfd</a> 
<a href="ddd" class="dd1">dfdfd</a> 
<a href="ddd" class="dd1">dfdfd</a> 
</div> 
</body> 
</html>
Copy after login


The above is the content. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template