这是一个尝试访问 $.getJSON 的代码,但它没有响应。这可能是什么原因。
function getTerms()
{
alert("hello"); //it alerts hello
$.getJSON('http://localhost/context-search.php?callback=?', function(r) {
//not here
alert("Hello");
});
}
$(document).ready(function(){
alert("hello");
getTerms();
});
context-search.php 以如下形式返回 json 数据
{"options":["osi","tcp","ip","http 协议","ethernet","网络协议","协议含义\n"]}
我哪里可能出错了??请帮我解决这个问题!谢谢你!!:)