繁体   English   中英

关于成功的警报消息不适用于AJAX

[英]Alert Message on Success not working on AJAX

  • 嗨,我是AJAX的初学者,面临下列代码中没有弹出警报消息的问题。
  • 我试图使用AJAX将数据从表单插入数据库。
  • 此代码成功将数据存储到数据库中。
  • 但它没有弹出警报信息,这是主要问题。

 **//index.php** // following is ajax code in which problem occur. i think. $(document).ready(function(){ $('#submit').click(function(){ $.ajax({ url:"store.php", method:"POST", data:$('#add_name').serialize(), success:function(data) { alert(data); $('#add_name')[0].reset(); } }); }); }); **//store.php** // following is the data base releted query $conn = mysqli_connect("localhost", "root", "", "prag"); $chapter_name = $_POST["chapter_name"]; $class = $_POST["class"]; $subjects = $_POST["subjects"]; $sql = "INSERT INTO chapter(class_id,subject_id,name) VALUES('$class','$subjects','$chapter_name')"; mysqli_query($conn, $sql); echo "Data Inserted"; </pre> 
 //HTML CODE //Following are the input fields through which data will store. <input type="text" name="chapter_name" placeholder="Enter the Chapter name" class="form-control name_list" /> <select name="class" id="class" class="form-control"> <option>Select Class</option> </select> <select name="subjects" id="subjects" class="form-control"> </select> <button type="submit" name="add_chapter" id="submit">Add </button> <pre> 

使用以下代码:

 <!DOCTYPE html>
 <html>
 <head>
    <title></title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
    <script type="text/javascript">
              $(document).ready(function(){  
      $('#submit').click(function(e){  
                      e.preventDefault();         
           $.ajax({  
                url:"data.php",  
                method:"post",  
                data:$('#add_name').serialize(),  
                success:function(data)  
                {  
                     alert(data);  
                     $('#add_name')[0].reset();  
                }  
           });  
      });  
 });

    </script>
  </head>
<body>
    <form method="post" id="add_name">
            <input type="text" name="chapter_name" placeholder="Enter the Chapter name" class="form-control name_list" />

<select name="class" id="class" class="form-control">
    <option>Select Class</option>
</select>

<select name="subjects" id="subjects" class="form-control">     
</select>

<button type="submit" name="add_chapter" id="submit">Add </button>
    </form>
</body>
</html>

检查PHP代码:

<?php 
$conn = mysqli_connect("localhost", "root", "", "prag");  


   $chapter_name = $_POST["chapter_name"];  
   $class = $_POST["class_name"];  
   $subjects = $_POST["subject_name"];  

  $sql = "INSERT INTO chapter(class_id,subject_id,name) VALUES('$class','$subjects','$chapter_name')";
  if(mysqli_query($conn, $sql)) {
    echo "Data Inserted";  
  } 
else {
  echo "Data Not Inserted";  
}
  ?>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM