jquery this中预留this的的专业名词

1213人阅读
jQuery(5)
// 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()) :
// 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 '&strong&' + txt + '&/strong&';
// 插件的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)
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:131125次
积分:2387
积分:2387
排名:第14027名
原创:101篇
转载:55篇
(3)(3)(2)(4)(4)(7)(3)(1)(11)(10)(2)(1)(1)(1)(6)(1)(3)(1)(12)(2)(6)(6)(7)(5)(5)(8)(6)(12)(1)(10)(11)2012年2月 Web 开发大版内专家分月排行榜第二
本帖子已过去太久远了,不再提供回复功能。$("#btn1").click(function(){
& & &var thisOne=$(this);
& & & $.post("url",function(data){
& & & & & & && var thisTwo=$(this);
注意:thisTwo和thisOne不是同一个对象.
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:487033次
积分:13919
积分:13919
排名:第763名
原创:901篇
转载:258篇
(3)(7)(15)(29)(34)(18)(8)(13)(1)(8)(9)(63)(20)(2)(21)(12)(25)(6)(14)(20)(9)(23)(14)(9)(7)(31)(26)(15)(23)(31)(20)(13)(9)(23)(22)(17)(552)2010年12月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第二
2011年4月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2011年3月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年11月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年10月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三
2010年12月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第二
2011年4月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2011年3月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年11月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年10月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三
2010年12月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第二
2011年4月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2011年3月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年11月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年10月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三
2010年12月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第二
2011年4月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2011年3月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年11月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三2010年10月 多媒体/设计/Flash/Silverlight 开发大版内专家分月排行榜第三
本帖子已过去太久远了,不再提供回复功能。}

我要回帖

更多关于 jquery this 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信