これらのファイルに何か問題がありますか? 出力を Firefox ブラウザーで表示しようとしていますが、表示できません。何も表示されません。ただの真っ白な画面です。
Ubuntu 13.04 を使用しています。どんな助けでも大歓迎です。
これらは私のファイルです
index.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>
script.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));
}
});
});