我正在研究 S3。在存储桶中,我有一个 browser.json 文件、jquery.js 和 index.html。在我的 index.html 中,我正在编写一个读取我的 JSON 文件的脚本。这是我的代码的样子......
!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<script>
$.getJSON('https://s3.amazonaws.com/plxscreenshots/browser.json', function(data) {
alert(data.date)
});
</script>
<p> I hope this works!</p>
</body>
我对 html/javascript 还是很陌生,但我觉得这应该可以工作,但不是,有什么建议吗?