通过jQuery发送POST请求没有响应?

时间:2017-10-02 10:46:28

标签: javascript jquery post http-post

我正在尝试使用jQuery

<html>
<head>
<title>post test</title>

<script src="jquery-3.2.1.min.js"></script>

<script>

$.post('http://lab.anta40.net/dummy/login.php',
      { 
        'username': 'John Doe', 
        'password': 'hello123'
      },

      function (response, status) {
        alert(response.status);
      }
    );

</script>
</head>

<body>
test...
</body>
</html>

我的意图是页面将显示一个警告框,其中包含POST请求的响应。在Chrome 61上运行代码并不能产生任何效果。根本没有警报框。这有什么不对?

0 个答案:

没有答案