jQuery中$this和$的区别介绍
$ 是JQuery对象,是JQuery 常用的一个回传函数,定义为 "选取" 英文是 selector 的缩写例子︰$.function();就是 选取 JQuery 定义的 function() 执行$('input')就是 选取 HTML 当中全部的 input 标签$('#abc')就是 选取 HTML 当中 ID 名称为 abc 的物件$.fn.testing = function() {}就是 选取 JQuery 内核函数 fn (函数) 回传给 testing 这个名称、定义为一个功能 function()
$this 只是个变量名,加$是为说明其是个jquery对象
//?this其实是一个Html?元素。//?$this?只是个变量名,加$是为说明其是个jquery对象。
//?而$(this)是个转换,将this表示的dom对象转为jquery对象,这样就可以使用jquery提供的方法操作。
(function($){
$.fn.hilight?=?function(options){
debug(this);?
var?defaults?=?{
foreground:?'red',
background:?'yellow'
};?
var?opts?=?$.extend({},?$.fn.hilight.defaults,?options);?
return?this.each(function()?{
//?this其实是一个Html?元素。
//?$this?只是个变量名,加$是为说明其是个jquery对象。
//?而$(this)是个转换,将this表示的dom对象转为jquery对象,这样就可以使用jquery提供的方法操作。
$this?=?$(this);?
//?build?element?specific?options
var?o?=?$.meta?$.extend({},?opts,?$this.data())?:?opts;?
//?update?element?styles
$this.css({
backgroundColor:?o.background,
color:?o.foreground
});?
var?markup?=?$this.html();
//?call?our?format?function?
markup?=?$.fn.hilight.format(markup);?
$this.html(markup);
});?
};?
//?define?our?format?function
$.fn.hilight.format?=?function(txt)?{
return?''?+?txt?+?'';
};?
//?插件的defaults
$.fn.hilight.defaults?=?{
foreground:?'red',
background:?'yellow'
};?
function?debug($obj)?{
if?(window.console?&&?window.console.log){
window.console.log('hilight?selection?count:?'?+?$obj.size());
}
};?
})(jQuery)
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!