将JSON写入网站

时间:2016-06-29 15:42:00

标签: javascript html json

在我的网站(hosted here)中, 我有一个JSON字符串,我无法使用此函数解析HTML:

<script>
 function check(){
      var url="https://www.cs.bgu.ac.il/~elii/j.json";
      $.get(url)
    // If the AJAX call was successful, let's process that data!
    .done( function(data) {
        alert("success");

        }) 
        .fail( function() {
      alert("Sorry, something went wrong!")
      });
    }
 </script>

但是,如果我将URL更改为

http://www.omdbapi.com/?t=homeland&y=&plot=short&r=json

即使该内容与我的网站内容相同,该功能也会成功。

有人可以告诉我为什么会这样吗?

0 个答案:

没有答案