只若初见

编写jquery设置样式的插件

电脑版发表于:2020/5/28 16:52

js:

$.fn.extend({
    "mycss": function (json) {
        this.html("我自己的css方法");

        //把jquery对象(jquery对象其实就是一个Js对象的集合,里边可能包含很多js对象)转化为js对象
        for (var i = 0; i < this.length; i++) {
            var jsobj = this[i];

            for (var key in json) {
                jsobj.style.setProperty(key, json[key]);
            }
        }
    }
});

用法:

 $(".testdiv").mycss({ width: "100px", height: "100px", background: "#ffabcd", color: "#fff", "margin-top": "10px" });


关于TNBLOG
TNBLOG,技术分享。技术交流:群号677373950
ICP备案 :渝ICP备18016597号-1
App store Android
精彩评论
{{item.replyName}}
{{item.content}}
{{item.time}}
{{subpj.replyName}}
@{{subpj.beReplyName}}{{subpj.content}}
{{subpj.time}}
猜你喜欢