.js文件没有在firefox中运行 - 代码添加了

时间:2013-11-01 12:35:04

标签: javascript ajax json

这些文件有问题吗?我试图在我的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));
    }
});
});

0 个答案:

没有答案