JavaScript強化のカスタムcalback例
911 ワード
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(" ");
}
});
});
});