gpt4 book ai didi

jQuery AJAX getJSON() 方法示例对我不起作用

转载 作者:行者123 更新时间:2023-12-01 05:00:53 25 4
gpt4 key购买 nike

我直接从 w3 学校的示例中获取了这段代码,但是,在他们的“Tryit Editor”之外,它对我不起作用。有什么想法吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("button").click(function () {
$.getJSON("http://w3schools.com/jquery/demo_ajax_json.js", function (result) {
$.each(result, function (i, field) {
$("div").append(field + " ");
});
});
});
});
</script>
</head>
<body>
<button>Get JSON data</button>
<div></div>
</body>
</html>

最佳答案

您只能向当前域上的位置发出 AJAX 请求,除非您请求 JSONP 响应。这是所有浏览器中的一项安全功能。 Google 搜索“同源政策”和“跨站点脚本”以获取更多信息。

解决方法是使用服务器端代理从外部域请求数据,然后使用 jQuery 查询本地代理。

关于jQuery AJAX getJSON() 方法示例对我不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10262753/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com