失敗,這是我的簡單功能簡單的jQuery功能在Safari,Chrome和IE
$('#save_button').click(function() {
$(this).attr('disabled',true).val('Saving');
$('#new_record_form').ajaxForm({
url: '/',
type: "POST",
dataType: "json",
beforeSubmit: function(){ alert('Boo!'); },
success: function(){ alert('Hello!'); }
});
});
這工作正常,在Firefox,但無法在Internet Explorer,Chrome或Safari。
評論此行$(this).attr('disabled',true).val('Saving');
似乎使事情工作。
發生這種情況的原因是什麼?
謝謝,但沒有解決與其他瀏覽器不工作的問題... – schone 2009-09-23 10:28:31