警告不在Firefox中工作但在铬中工作

时间:2015-03-16 13:38:27

标签: javascript php jquery ajax post

jquery的:

$("document").ready(function(){
  alert('This is working');
    $(".add_new").click(function() {
      $(".table").hide();
      $("#frm").show();
    });
      $(".insert_form").submit(function(){
    var sending_data = {
      "action": "insert"
    };
    sending_data = $(this).serialize() + "&" + $.param(sending_data);
    $.ajax({
      type: "POST",
      url: "test.php", //Relative or absolute path to response.php file
      data: sending_data,
      success: function(return_data) {
       alert(return_data); //This is not working.
     }
    });
  });
});

test.php的

<?php
echo $_POST['action'];
?>

HTML:

<form method="post" id="frm" style="display:none;" class="insert_form">
<input type="text" value="" required="required" placeholder="Enter your Name" name="user_name" />
<input type="submit" value="Submit" />
<input type="reset" value="clear" />
</form>

提交后我必须显示消息。我只是使用alert()进行测试,但警报框出现了。请帮助。

0 个答案:

没有答案