码迷,mamicode.com
首页 > Web开发 > 详细

jquery扩展方法

时间:2018-06-19 10:35:37      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:print   func   for   end   htm   rip   扩展方法   实例   ttext   

{#    用jQuery写插件时,最核心的两个方法#}
{#    $.extend(object)//为jquery添加一个静态方法#}
{#    $.fn.extend(object)//为jquery实例添加一个方法#}
    $.extend({
        Myprint:function () {
            console.log(‘hello‘)
        }
    })
    $.Myprint()

 

输出标签内容
$.fn.extend({
        Gettext:function () {
            //原生js写
{#            for(var i=0; i<$(this.length); i++){#}
{#                console.log($(this[i].innerHTML)) //$(this)找到当前一个标签#}
{#            }#}
            
            //用jquery写
            $.each($(this)),function(x,y) {
                console.log(y.innerHTML)
            }
        }
    });
    $(‘p‘).Gettext()

 

jquery扩展方法

标签:print   func   for   end   htm   rip   扩展方法   实例   ttext   

原文地址:https://www.cnblogs.com/wangyue0925/p/9197255.html

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