https://www.liaoxuefeng.com/.../0014356468967974219593d94f64d06b370c87fc38eade4000
给jQuery对象绑定一个新方法是通过扩展 $.fn 对象实现的。 ... $.fn.highlight1 =
function () { // this已绑定为当前jQuery对象: this.css('backgroundColor', '#fffceb').
css('color', '#d85030'); return this ... 我们可以给方法加个参数,让用户自己把参数用
对象传进去。 ... 放全局变量肯定不合适,最佳地点是 $.fn.highlight2 这个函数对象
本身。