我正在尝试使用isoHunt搜索API,但是当我尝试解析URL(在我的broswer中查看其位置后似乎是正确的)时,没有任何反应。下面是我用来尝试测试脚本的脚本。有谁知道是什么导致这不能解析JSON文件?
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>isoHunt Search</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#button").click(function(){
var keywords = $("#keywords").val();
var url = "http://isohunt.com/js/json.php?ihq=" + keywords;
$("#output").append(url);
$.getJSON(url, function(data){
$("#output").append("TEST123");
});
});
});
</script>
</head>
<body>
<input type="text" name="keywords" id="keywords" />
<button id="button">Search</button>
<div id="output"></div>
</body>
</html>