这些文件有问题吗?我正在尝试在我的 Firefox 浏览器上查看输出,但我无法做到。什么都没有显示。这只是一个空白屏幕。
我正在使用 Ubuntu 13.04。任何帮助,将不胜感激。
这些是我的文件
索引.html
<!DOCTYPE html>
<html>
<head>
<script src="script.js" type="text/javascript"></script>
</head>
<body>
<pre id='json' style='white-space: pre-wrap'></pre>
</body>
</html>
脚本.js
$(document).ready(function(){
var req = {
format: 'json',
action: 'parse',
page: 'New York City',
prop: 'text',
section: 0
};
$.ajax({
url: '//simple.wikipedia.org/w/api.php',
data: req,
cache: true,
dataType: 'jsonp',
success: function(result) {
// Add result's HTML to the top of the <body>
$('body').prepend(result.parse.text['*']);
// Append full JSON result to output
$('#json').text(JSON.stringify(result, '', 2));
}
});
});