$(elemt).bind("click",function(event){ });
这个方法只能传递 event 这个事件吗?能否传递自定义的变量或添加传递的参数?
如:
   $(elemt).bind("click",function(我的参数){ }); 

   $(elemt).bind("click",function(event,我的参数1, ......n){ });