jquery插件写法

Posted 从你世界路过

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery插件写法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>

    <body>
        <ul>
            <li>
                <a href="http://www.webo.com/liuwayong">我的微博</a>
            </li>
            <li>
                <a href="http://http://www.cnblogs.com/Wayou/">我的博客</a>
            </li>
            <li>
                <a href="http://wayouliu.duapp.com/">我的小站</a>
            </li>
        </ul>
        <p>这是p标签不是a标签,我不会受影响</p>
        <script type="text/javascript" src="js/jquery.min.js"></script>
        <script type="text/javascript">
            ;
            (function($, window, document, undefined) {
                //定义Beautifier的构造函数
                var Beautifier = function(ele, opt) {
                    this.$element = ele,
                        this.defaults = {
                            \'color\': \'red\',
                            \'fontSize\': \'12px\',
                            \'textDecoration\': \'none\'
                        },
                        this.options = $.extend({}, this.defaults, opt)
                }
                //定义Beautifier的方法
                Beautifier.prototype = {
                    beautify: function() {
                        return this.$element.css({
                            \'color\': this.options.color,
                            \'fontSize\': this.options.fontSize,
                            \'textDecoration\': this.options.textDecoration
                        });
                    }
                }
                //在插件中使用Beautifier对象
                $.fn.myPlugin = function(options) {
                    //创建Beautifier的实体
                    var beautifier = new Beautifier(this, options);
                    //调用其方法
                    return beautifier.beautify();
                }
            })(jQuery, window, document);
            $(function() {
                $(\'a\').myPlugin({
                    \'color\': \'#2C9929\',
                    \'fontSize\': \'20px\',
                    \'textDecoration\': \'underline\',
                });
            })
        </script>
    </body>

</html>

 

以上是关于jquery插件写法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 插件写法2

25个可遇不可求的jQuery插件

jQuery插件的写法以及使用

jQuery插件的使用和写法

《锋利的jQuery》插件的使用和写法

几个非常实用的JQuery代码片段