js 高级排它思想


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <ul>
        <li>1 <span>11</span></li>
        <li>2 <span>22</span></li>
        <li>3 <span>33</span></li>
        <li>4 <span>44</span></li>
    </ul>
    <script>
        var list = document.getElementsByTagName('li')
        var span = document.getElementsByTagName('span')

        //  (时间复杂度>空间复杂度)
        //并不是太快了 而是引用类型 后面覆盖前面 生成块级作用域
        for (var i = 0; i < list.length; i++) {
            // 方法三
            // for (let i = 0; i < list.length; i++) {
            //     list[i].onclick = function (e) {
            //         for (var j = 0; j < list.length; j++) {
            //             list[j].style.color = "#000";
            //             span[j].style.color = '#000'
            //         }
            //         // this.style.color = "#f00"//this指向该元素
            //         list[i].style.color = "#f00"
            //         span[i].style.color = '#ff0'
            //     }

            // 方法二
            // (function (k) {
            //     list[k].onclick = function (e) {
            //         for (var j = 0; j < list.length; j++) {
            //             list[j].style.color = "#000";
            //             span[j].style.color = '#000'
            //         }
            //         // this.style.color = "#f00"//this指向该元素
            //         list[k].style.color = "#f00"
            //         span[k].style.color = '#ff0'
            //     }
            // })(i)

            // 方法一
            // list[i].index = i
            // list[i].onclick = function (e) {
            //     for (var j = 0; j < list.length; j++) {
            //         list[j].style.color = "#000";
            //         span[j].style.color = '#000'
            //     }
            //     // console.log(k)
            //     // this.style.color = "#f00"//this指向该元素
            //     this.style.color = "#f00"
            //     span[this.index].style.color = '#ff0'

            // }

        }

        //  (时间复杂度<空间复杂度)
        var index = 0
        // for (let i = 0; i < list.length; i++) {
        for (var i = 0; i < list.length; i++) {

            // 方法一
            //     list[i].onclick = function (e) {
            //     list[index].style.color = '#000'
            //     this.style.color = '#f00'
            //     index = i
            // }

            // 方法二
            list[i].index = i
            list[i].onclick = function (e) {
                list[index].style.color = '#000'
                this.style.color = '#f00'
                index = this.index
            }

        }


    </script>
</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

web修理工

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值