html:
js:
複製程式碼
程式碼🎜>$().ready(function(){
$("select").unbind("clickMe");
//傳遞一個json格式物件,這個json中有name,age,callback,可以用objJSON.屬性名的方式來存取
$("select").bind("clickMe",function(event,objJSON){
alert(objJSON.name);
alert(objJSON .age);
objJSON.callback();
});
$("select").unbind("change");
$("select").bind ("change",function(){
//事件觸發器的參數是一個json格式的物件
$(this).trigger("clickMe",{
name:'xxc',
age:20, callback:function(){ alert("回調函數"); } }); }); });