日期:2014-05-16 浏览次数:20805 次
<form onsubmit="return ajax(this)"> <input type="text" name="name"/><input type="submit" value="提交"/> </form> <script> function ajax(f){ //你的ajax提交代码 return false;//////////////阻止表单提交 } </script>