javascript - js精简优化
PHPz
PHPz 2017-04-11 12:34:43
[JavaScript讨论组]

js代码精简问题

over:function(){
            var li = this.li;
            var box = this.box;
            var that = this;
            for(var i = 0,len = li.length; i < len; i++){
                (function(i){
                    li[i].onmouseenter = function(){
                        var oImg = document.createElement('img');
                        oImg.src = this.getElementsByTagName('img')[0].src;
                        oImg.style.width = '300px';
                        oImg.style.height = '300px';
                        box.appendChild(oImg);
                        box.style.display = 'block';
                        that.move();
                        
                    }
                })(i)
            }
        },
        move:function(){
            var li = this.li;
            var that = this;
            var box = this.box;
            for(var i = 0,len = li.length; i < len; i++){
                (function(i){
                    li[i].onmousemove = function(){
                        var e = e || window.event;
                        var a = e.clientX;
                        var b = e.clientY;
                        box.style['top'] = b + 20 +'px';
                        box.style['left'] = a + 20 + 'px';
                    }
                })(i)
            }
        },

里面的循环如何精简,再外面在写一个专门循环的函数如何调用

例如:

loop:function(action,fn){
            var li = this.li;
            var box = this.box;
            for(var i = 0,len = li.length; i < len; i++){
                (function(i){
                    li[i].action = fn;
                })(i)
            }
        },

不胜感激!!!

PHPz
PHPz

学习是最好的投资!

全部回复(2)
巴扎黑

使用事件代理,在父节点监听子节点的事件, 可以看看这个例子

PHP中文网

这种情况就是经典的事件代理的应用场景,根本不需要循环绑定事件。

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号