如何防止表单提交后页面重新加载 - JQuery

2022-08-30 19:24:00

我正在为我的应用程序开发课程开发一个网站工作,我有最奇怪的问题。

我正在使用一些JQuery将表单数据发送到一个名为“process.php php页面,然后将其上传到我的数据库。奇怪的错误是页面在提交表单时重新加载,我无法或我的生活弄清楚如何使JQuery仅在后台继续。这就是首先使用JQuery的意义,哈哈。无论如何,我将提交所有相关代码,如果您需要其他任何内容,请告诉我。

<script type="text/JavaScript">

$(document).ready(function () {
  $('#button').click(function () {

    var name = $("#name").val();
    var email = $("#email").val();

    $.post("process.php", {
      name: name,
      email: email
    }).complete(function() {
        console.log("Success");
      });
  });
});
</script>
<div class= "main col-xs-9 well">
  <h2 style="color: black" class="featurette-heading">Join our mailing list!</h2>
  <form id="main" method = "post" class="form-inline">
    <label for="inlineFormInput">Name</label>
    <input type="text" id="name" class="form-control mb-2 mr-sm-2 mb-sm-0" id="inlineFormInput" placeholder="Jane Doe">
    <label for="inlineFormInputGroup">Email</label>
    <div class="input-group mb-2 mr-sm-2 mb-sm-0">
      <input type="text" id="email" class="form-control" id="inlineFormInputGroup" placeholder="janedoe@email.com">
    </div>
    <!--Plan to write success message here -->
    <label id="success_message"style="color: darkred"></label>
    <button id ="button" type="submit" value="send" class="btn btn-primary">Submit</button>
  </form>

这是我的php,如果它相关:

<?php
  include 'connection.php';

  $Name = $_POST['name'];
  $Email = $_POST['email'];

  //Send Scores from Player 1 to Database 
  $save1   = "INSERT INTO `contact_list` (`name`, `email`) VALUES ('$Name', '$Email')";

  $success = $mysqli->query($save1);

  if (!$success) {
    die("Couldn't enter data: ".$mysqli->error);

    echo "unsuccessfully";
  }

  echo "successfully";
?>

这是日志的屏幕截图:

screenshot of log


答案 1

除非另有指定,否则放置在表单中的元素将自动提交表单。您可以使用以下 2 种策略:<button>

  1. 用于覆盖默认提交行为<button type="button">
  2. 在提交时事件中使用以防止表单提交event.preventDefault()

解决方案 1:

  • 优点:简单更改标记
  • 缺点:破坏默认表单行为,尤其是在禁用 JS 时。如果用户想要点击“Enter”进行提交,该怎么办?

在按钮标记中插入额外的属性:type

<button id="button" type="button" value="send" class="btn btn-primary">Submit</button>

解决方案 2:

  • 优点:即使禁用了JS,表单也可以工作,并且遵循标准表单UI / UX,以便至少使用一个按钮进行提交

单击按钮时阻止默认表单提交。请注意,这不是理想的解决方案,因为您实际上应该侦听提交事件,而不是按钮单击事件

$(document).ready(function () {
  // Listen to click event on the submit button
  $('#button').click(function (e) {

    e.preventDefault();

    var name = $("#name").val();
    var email = $("#email").val();

    $.post("process.php", {
      name: name,
      email: email
    }).complete(function() {
        console.log("Success");
      });
  });
});

更好的变体:

在此改进中,我们侦听从元素发出的提交事件:<form>

$(document).ready(function () {
  // Listen to submit event on the <form> itself!
  $('#main').submit(function (e) {

    e.preventDefault();

    var name = $("#name").val();
    var email = $("#email").val();

    $.post("process.php", {
      name: name,
      email: email
    }).complete(function() {
        console.log("Success");
      });
  });
});

更好的变体:使用 .serialize() 序列化表单,但请记住向输入添加属性:name

该属性是工作所必需的,根据jQuery的文档name.serialize()

对于要包含在序列化字符串中的表单元素的值,该元素必须具有 name 属性。

<input type="text" id="name" name="name" class="form-control mb-2 mr-sm-2 mb-sm-0" id="inlineFormInput" placeholder="Jane Doe">
<input type="text" id="email" name="email" class="form-control" id="inlineFormInputGroup" placeholder="janedoe@email.com">

然后在你的JS中:

$(document).ready(function () {
  // Listen to submit event on the <form> itself!
  $('#main').submit(function (e) {

    // Prevent form submission which refreshes page
    e.preventDefault();

    // Serialize data
    var formData = $(this).serialize();

    // Make AJAX request
    $.post("process.php", formData).complete(function() {
      console.log("Success");
    });
  });
});

答案 2

加载页面时清除以前的状态....将其添加到 document.ready 函数。

if ( window.history.replaceState ) {
    window.history.replaceState( null, null, window.location.href );
}