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

jQuery——插件制作

时间:2018-01-03 14:12:07      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:top   fun   char   html   blog   增加   idt   type   image   

1、$.fn.extend:扩展 jQuery 元素集来提供新的方法(通常用来制作插件),使用时是$(‘选择器‘).方法

2、$.extend:扩展jQuery对象本身,用来在jQuery命名空间上增加新函数,使用时是$.方法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        div{
            width: 100px;
            height: 100px;
            margin-left: 150px;
            margin-top: 20px;
            border: 1px solid #000;
        }
    </style>
    <script src="js/jquery.min.js"></script>
</head>
<body>
<div></div>
<script>
    $.fn.extend({
        becomeYellow:function () {
            //this是$(‘选择器‘)获取的jq对象,不是注册方法中的dom对象
            this.css({backgroundColor:yellow});
        }
    });
    $.extend({
        becomeRed:function (a,b) {
            console.log(a+b);
        }
    });
    $(div:eq(0)).becomeYellow();
    $.becomeRed(1,2);//3
</script>
</body>
</html>

技术分享图片

jQuery——插件制作

标签:top   fun   char   html   blog   增加   idt   type   image   

原文地址:https://www.cnblogs.com/wuqiuxue/p/8183047.html

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