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

高端编程之DOM

时间:2018-04-06 21:18:40      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:htm   oct   get   his   调用   this   pre   post   document   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<table border="1" width="300px">
    <tr><td>1</td><td>2</td><td>3</td></tr>
    <tr><td>1</td><td>2</td><td>3</td></tr>
    <tr><td>1</td><td>2</td><td>3</td></tr>
</table>
    <script>
        var myTrs = document.getElementsByTagName(‘tr‘);
        var len =myTrs.length;
        for(var i=0;i<len;i++){
            myTrs[i].onmouseover=function () {
//                谁调用的函数this就会指向谁
                this.style.backgroundColor=‘red‘
            }
            myTrs[i].onmouseout=function () {
//                谁调用的函数this就会指向谁
                this.style.backgroundColor=‘‘
            }
        }
    </script>
</body>
</html>

  

高端编程之DOM

标签:htm   oct   get   his   调用   this   pre   post   document   

原文地址:https://www.cnblogs.com/qiangayz/p/8728772.html

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