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

这篇文章主要介绍了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"));

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgpzsx.html