我有一个表格:
<form id="auth_form" action="http:abcd/sub/SSO" method="post">
//other input
<input type="submit" value="Click to get Auth" />
</form>
当用户点击按钮提交时,我会在提交之前先做一些事情,在表单中添加一些字段,比如时间戳来指示提交时间。
//javascript
$("#auth_form").submit(function(){
//some thing to add to the form input
});
但是现在当我点击提交按钮时,页面并没有被定向到操作页面,而是开始下载。下载文件“SSO”。发生什么事了?