the arguments come from jQuery as $(this)
and contain multiple elements :)
审判
$( #el ).delegate($(this), click ...
$( #el ).delegate($(this).each(), click ...
无。
(function($){
$.fn.myfunction= function(){
// here i need to somehow find .a, .b., .c etc...
$( #el ).delegate($(this), click , function(event){
});
});
});
稍后我呼吁:
jQuery(document).ready(function($){
$( .a, .b, .c ).myfunction();
});
因此,我要谈谈所有新的问题。