jquery 中this 和$(this)的问题?下面是简单的实例代码。
(function($){$.fn.tableimage=function(){varimg_preview=$('#img-preview');if(img_previ...
(function($) {
$.fn.tableimage = function() {
var img_preview = $('#img-preview');
if(img_preview.length==0){
img_preview = $('<div>').attr('id', 'img-preview');
}
$('body').append(img_preview);
return this.each(function() { //这里this的含义 通俗的讲。
$(this).on('click','.imageitem',function(){ //这里$(this)代表什么含义?
/ /.........
});
}
})(jQuery); 展开
$.fn.tableimage = function() {
var img_preview = $('#img-preview');
if(img_preview.length==0){
img_preview = $('<div>').attr('id', 'img-preview');
}
$('body').append(img_preview);
return this.each(function() { //这里this的含义 通俗的讲。
$(this).on('click','.imageitem',function(){ //这里$(this)代表什么含义?
/ /.........
});
}
})(jQuery); 展开
2个回答
展开全部
$(this)是jquery的写法,表示当前方法自身。this是js的写法,表示当前方法或对象自身。
根据你给的代码,this是表示$.fn.tableimage这一方法,$(this)是表示this.each循环中的一个循环。
根据你给的代码,this是表示$.fn.tableimage这一方法,$(this)是表示this.each循环中的一个循环。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询