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

jq 里的 each()妙用

时间:2016-01-07 11:40:33      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:

场景:为多个页面写了公用的方法,加载到不同的元素里,一般写法是:

if($(‘.A‘).lenght){
    $(‘.A‘).method();
}
if($(‘.B‘).lenght){
    $(‘.B‘).method();
}
if($(‘.C‘).lenght){
    $(‘.C‘).method();
}

得写多个判断,再执行,比较繁琐。。

可用jq的扩展方法来实现 更便捷:

$.fn.loadList = function(){
    // 代码
    var method = function(){
         // 代码
    }

    return this.each(function(){
        method();
    });
}        

$(‘.A‘).loadList();
$(‘.B‘).loadList();
$(‘.C‘).loadList();

这样封装好。。

jq 里的 each()妙用

标签:

原文地址:http://www.cnblogs.com/damade/p/5109165.html

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