这看起来似乎不太难实现,但我很匆忙,我一直在寻找一个简单的答案.我需要在页面加载时提交表单.这是我的
AJAX提交功能,工作正常.我只需要弄清楚如何在页面加载时触发它.
任何帮助深表感谢!
$("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; });