DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery之Bind方法教程參數傳遞與接收的三種方法教程
Jquery之Bind方法教程參數傳遞與接收的三種方法教程
編輯:JQuery特效代碼     

方法一、

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"));
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved