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

for循环 事件 if else综合应用

时间:2019-09-20 23:22:37      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:col   lse   tab   log   dff   for   out   strong   adb   

    <table id="tb">
        <tr>
            <td>1</td>
            <td>2</td>
            <td>3</td>
        </tr>
        <tr>
            <td>4</td>
            <td>5</td>
            <td>6</td>
        </tr>
    </table>
    <script>
        var td = document.getElementsByTagName(td);
        // console.log(td);
        for (var a in td{ (a约等于for循环的名称,引用时放在[]中,不能再忘记了)
            td[a].onclick = function () {
                // this.style.backgroundColor=‘red‘;(点击颜色不消失)
                if (this.style.backgroundColor{
                    this.style.backgroundColor = ""
                }
                else {
                    this.style.backgroundColor = "red"
                }

            }
        }
<----------------------------------------------------鼠标移上去变色移走颜色还原---------------------------------------------------------------->
(用到两个方法)
        var td=document.getElementsByTagName(td);
        for(var i in td){
            td[i].onmouseover=function(){
                this.style.backgroundColor="red";}
            }
        for(var i in td){
            td[i].onmouseout=function(){
                this.style.backgroundColor="";}
            }

for循环 事件 if else综合应用

标签:col   lse   tab   log   dff   for   out   strong   adb   

原文地址:https://www.cnblogs.com/xingzhikun12138/p/11559908.html

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