Jquery之Bind方法参数传递与接收

 

方法一、

function GetCode(event) { alert(event.data.foo) }

$(document).ready(function(){ $("#summary").bind("click", {foo:'abc'} ,GetCode); });

 

方法二、

函数句柄 $("#summary").bind("click", function(){GetCode("abc")});

function GetCode(str){}

方法三、

函数闭包

function GetCode(str){ return function(){ alert(str) }}

$("#summary").bind("click", GetCode("abc"));

posted @ 2014-05-13 16:35  天藐水瓶  阅读(303)  评论(0编辑  收藏  举报