启用解析来自url的json

时间:2014-06-03 13:59:57

标签: javascript jquery html ajax json

<html>
<head>
<title>the title</title>
   <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
   <script type="text/javascript" language="javascript">
$(document).ready(function() 
{
  $("#driver").click(function(event)
  {
    ($.ajax({
      url: 'json/categories',
//    url:'http://eazydial.logicengine.in/api/categories';//
      dataType: "json",
      success: function (data) 
      {
//            alert(JSON.stringify(data));
        $.each(data, function(i,data)
        {
        var det="<div>id :"+data.categoryId+" Name "+ data.categoryName+"</div></br>";
        $(det).appendTo("#9lessonsLinks");



       });
      }
     }));
   });
});
   </script>
</head>
<body>

<div id="9lessonsLinks"></div>
   <p>Click on the button to load result.html file:</p>

   <input type="button" id="driver" value="Load Data"  "/>
</body>
</html>

在上面的代码中url:json / categories指向类别json文件,这会从文件中正确地解析结果(我已下载文件并保存在json /文件夹中)

但是,当我通过网址时,“http://eazydial.logicengine.in/api/categories”指向同一个在线文件时,它什么也没有显示。

请任何人都能告诉我为什么这么开心?

0 个答案:

没有答案