我正在尝试使用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上运行代码并不能产生任何效果。根本没有警报框。这有什么不对?