var contact=(function(){ this.init=function(){ this.btn_bind(); } this.btn_bind=function(){ } this.init(); var re={ 'send':function(){ var data=ANK.get_form_data($('.contact_form')); console.log(data); //防呆 var cfm=confirm('確定是否送出?'); if(!cfm)return false; data['ajax_type']='send'; ANK.ajax(['ajax/ajax_contact.php','contact','_main'],data,function(gdata){ alert(gdata['desc_str']); if(gdata['status']){ location.reload(); } },'json'); } } return re; }());