码迷,mamicode.com
首页 > 其他好文 > 详细

使用 DOM 和事件来提供一些视觉效果

时间:2018-03-30 01:16:10      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:html   背景颜色   for   back   name   col   code   find   文档   

 

code:

<html>
<head>
<title>Introduction to the DOM</title>
<script>
//直到文档完全载入,我们才能操作 DOM
window.onload = function(){
 //查找所有的<li>元素,附以事件处理程序
 var li = document.getElementsByTagName("li");
 for ( var i = 0; i < li.length; i++ ) {
 //将鼠标移入事件处理程序附在<li>元素上,
 //该程序改变<li>背景颜色为蓝色
 li[i].onmouseover = function() {
 this.style.backgroundColor = ‘blue‘;
 };
 //将鼠标移出事件处理程序附在<li>元素上,
 //该程序将<li>的背景颜色改回白色
 li[i].onmouseout = function() {
 this.style.backgroundColor = ‘white‘;
 };
 }
};
</script>
</head>
<body>
 <h1>Introduction to the DOM</h1>
 <p class="test">There are a number of reasons why the DOM is awesome,
here are some:</p>
 <ul>
<li id="everywhere">It can be found everywhere.</li>
<li class="test">It‘s easy to use.</li>
<li class="test">It can help you to find what you want,
 really quickly.</li>
 </ul>
</body>
</html>  

 

使用 DOM 和事件来提供一些视觉效果

标签:html   背景颜色   for   back   name   col   code   find   文档   

原文地址:https://www.cnblogs.com/Longhua-0/p/8673442.html

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