我有一個簡單的<button type="submit" onClick="dothis();">Click</button>
。Jquery ajax不能在功能上工作
這個腳本下面已經沒有問題,
$(document).ready(function() {
action = 'test';
$.ajax({
url:'ajax.php',
data: 'action='+action,
type:'GET',
dataType:'json',
timeout:7000,
error:function(){ alert('Error!'); return false; },
success:function(json){ alert('ok'); }
});
});
但是當我把它放進函數,那麼它不工作,
function dothis(){
action = 'test';
$.ajax({
url:'ajax.php',
data: 'action='+action,
type:'GET',
dataType:'json',
timeout:7000,
error:function(){ alert('Error!'); return false; },
success:function(json){ alert('ok in function'); }
});
}
什麼是把AJAX到函數的正確方法?
你叫'account_register()'什麼地方?僅供參考,您的第一個例子也是一個功能。 – jfriend00
對不起,我的錯誤,是dothis() – Peter
'' – Darren