Posted in Javascript onJune 24, 2014
方法一、
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"));
Jquery之Bind方法参数传递与接收的三种方法
- Author -
whsnow声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@