码迷,mamicode.com
首页 > Web开发 > 详细

JS初学之-js的a:hover

时间:2014-10-24 18:02:17      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   for   sp   div   on   cti   html   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
.active{background:yellow;}
div{width:200px;height:200px;background:#F00;display:none}
</style>
<script>
window.onload=function(){
var aBtn=document.getElementsByTagName(‘input‘);
var aDiv=document.getElementsByTagName(‘div‘);

for(var i=0;i<aBtn.length;i++){
aBtn[i].index=i;
aBtn[i].onmouseover=function(){
for(var i=0;i<aBtn.length;i++){
aBtn[i].className=‘‘;
aDiv[i].style.display=‘‘;
};
this.className=‘active‘;
aDiv[this.index].style.display=‘block‘;
};
};

};
</script>
</head>

<body>
<input type="button" value="按钮1" />
<input type="button" value="按钮2" />
<input type="button" value="按钮3" />
<input type="button" value="按钮4" />
<input type="button" value="按钮5" />
<div style="display:block">1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</body>
</html>

JS初学之-js的a:hover

标签:style   io   ar   for   sp   div   on   cti   html   

原文地址:http://www.cnblogs.com/aomore/p/4048503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!