标签:cti hang 结构 query UNC 实现 this func ret
给jQuery对象绑定一个新方法是通过扩展 $.fn
对象实现的。让我们来编写第一个扩展
$.fn.bg = function () { // this已绑定为当前jQuery对象: this.css(‘backgroundColor‘, ‘#cfcfcf‘).css(‘color‘, ‘#d85030‘);
return this;
}
<!-- HTML结构 -->
<div id="changeBg"> 啦啦啦啦啦</p>
</div>
<!-- js结构 -->
$(‘#changeBg‘).bg
标签:cti hang 结构 query UNC 实现 this func ret
原文地址:https://www.cnblogs.com/anxiangff/p/9319348.html