你好非常基本的问题
我有许多 div(包含图像),我想对它们应用相同的缩放功能(使用 .click)。但我不知道该怎么做。我想我需要使用“.this”或“.target”?
jQuery.fn.jQueryFunctionName = function(){
console.log(jQuery(this));
}
jQuery(function () {
jQuery("div, img").click(function () {
console.log(jQuery(this)); // target element
jQuery(this).jQueryFunctionName();
});
});
$('.className').die('click').live('click',function(){
//write your code here
alert('clicked');
});
或者
$('.className').click(function(){
//write your code here
alert('clicked');
});
向所有 s 添加一个类div
,然后执行以下操作:
$('.className').click(yourFunction);