新手:如何使JSON / JQUERY工作

时间:2014-06-30 07:11:05

标签: jquery json

我在google上搜索过试图学习如何使用JSON,当它只是复制/粘贴一些示例时,虽然它很有效,但是尽管经过多次尝试我仍然无法将其用于我自己的目的。

这是我目前正在尝试使用的代码。我的错误在哪里?

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>getJSON</title>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<script>
$.ajax({
    url: 'http://hotell.difi.no/api/jsonp/brreg/enhetsregisteret?callback=JSON_CALLBACK&query=987369396',
    dataType: 'json',
    success: function(response) {
        document.write(response);
    }
});
</script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

你的AJAX函数应该在DOM ready事件之后,如下所示:

$(function() {
    $.ajax({
        url: 'http://hotell.difi.no/api/jsonp/brre/enhetsregisteret?callback=JSON_CALLBACK&query=987369396',
        dataType: 'json',
        success: function(response) {
            document.write(response);
        }
    });
});