基于AJAX和jQuery的Post表单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于AJAX和jQuery的Post表单相关的知识,希望对你有一定的参考价值。

This code shows how we post html form by AJAX and jQuery.
  1. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
  2. <script>
  3. $(document).ready(function () {
  4. $("#Form1").submit(function (Event) {
  5. Event.preventDefault()
  6. $.post(
  7. "Insert.php",
  8. $(this).serialize(),
  9. function (Data) {
  10. // Success
  11. }
  12. )
  13. })
  14. })
  15. </script>

以上是关于基于AJAX和jQuery的Post表单的主要内容,如果未能解决你的问题,请参考以下文章

jQuery ajax表单提交

jQuery $.post() 执行两次后的 php 代码

基于jQuery的ajax系列之用FormData实现页面无刷新上传

php 用于在PHP中提交AJAX表单的Jquery Ajax Post示例

jQuery AJAX Post 不工作

如何使用 ajax Post 方法在没有 jQuery 的情况下提交用户输入