방법 1,
function GetCode(event) { alert(event.data.foo); }
$(document).ready(function() { $("#summary").bind("click", {foo:'abc'} ,GetCode); });
방법 2,
함수 핸들
$("#summary").bind("click", function() { GetCode("abc") });
function GetCode(str) { }
방법 3,
기능 종료
function GetCode(str) { return function() { alert(str) }}
$("#summary").bind("click", GetCode("abc"));