摘要:html: $.kafei.fontsize($("p"),"30px").html("123")jQuery: $.kafei={ fontsize:function(obj,value){ obj.css("font-size",value...
阅读全文
摘要:html: $("p").log().css("color","red") jQuery: $.fn.extend({ log: function() { var date = new Date() var year = date.getFul...
阅读全文
摘要:html: $("p").fontcolor().html("qaq")jQuery: $.fn.extend({ fontcolor:function(){ this.css("font-size","30px").css("color","blue"...
阅读全文
摘要:html: $.font($("p"),"30px").html("变化了")jQuery: $.extend({ font:function(obj,value){ obj.css("font-size",value) retur...
阅读全文
摘要:html: jQuery: //单独建立js文件存放,然后在html头部导入 jQuery.color=function(obj,value){ $("#box").css("background",value) return obj} ...
阅读全文
摘要://jQuery必备 //根据自己的js包名更改 按钮
阅读全文