码迷,mamicode.com
首页 > Web开发 > 详细

jquery bind 传参数

时间:2015-07-16 13:20:30      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

方法一、

1
2
3
4
function GetCode(event)
{
alert(event.data.foo);
}
1
2
3
4
$(document).ready(function()
{
$("#summary").bind("click", {foo:‘abc‘} ,GetCode);
});

方法二、

函数句柄

1
2
3
4
$("#summary").bind("click", function()
{
GetCode("abc")
});
1
2
3
function GetCode(str)
{
}

方法三、

函数闭包

1
2
3
4
5
6
function GetCode(str)
{
return function()
{
alert(str)
}}
1
$("#summary").bind("click", GetCode("abc"));

jquery bind 传参数

标签:

原文地址:http://www.cnblogs.com/wumingcong/p/4650778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!