JQ 封装一个颜色插件

Posted AR13

tags:

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

    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>extend</title>
    </head>
    <body>
        <input type="button" value="OK" style="color:red">
        <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
        <script>
            ;(function($) {
                $.fn.extend({
                    "color":function(value){
                        if( value== undefined){
                            return this.css("color")
                        }else{
                            return this.css("color",value)
                        }
                    }
                })
            })(jQuery)
            var x = $("input").color("pink");
        </script>
    </body>
    </html>

以上是关于JQ 封装一个颜色插件的主要内容,如果未能解决你的问题,请参考以下文章

关于JQ分页插件的封装

JQ封装导航条插件

JQ封装导航条插件

怎么用jq封装插件

写一个简单的JQ插件(例子)

jq插件的编写方法(自定义jq插件)---转