這看起來好像不應該太難完成,但我很忙,我一直在尋找一個簡單的答案。我需要在網頁加載時提交表單。這是我的AJAX提交功能,工作正常。我只需要弄清楚如何在頁面加載時觸發它。如何使用Jquery觸發頁面加載的表單提交
任何幫助非常感謝!
$("form#seller-agreement-form").submit(function() {
// we want to store the values from the form input box, then send via ajax below
$.ajax({
type: "POST",
url: "http://www2.myurl.com/formhandler",
data: "email="+ email + "&status=" + status,
success: function(){
$('form#seller-agreement-form').hide(function(){$('div#output').fadeIn();});
}
});
return false;
});
確定。這工作,但我似乎陷入了無休止的意見循環。 – 2011-12-14 19:46:35