(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);
斯蒂芬大帝
相关分类