我正在使用$.post
. 从服务器我返回 json 响应。当我直接在浏览器中打开服务器 url 时,它会成功返回。但是从js它不起作用。
我调用的链接是this( http://54.249.240.120/qcorner/login
)。
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<input type="button" id="testID">
<script type="text/javascript">
$(document).ready(function() {
$("#testID").click(function() {
$.post('http://54.249.240.120/qcorner/login',function(result){
alert(result);
});
});
});
</script>
</body>
</html>
我也在 Firefox 中尝试过。在那我得到200 OK,但没有回应。
为什么会这样