$ .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 protcol"、 "ethernet"、 "network protocol"、"プロトコルの意味\n"]}
どこが間違っているのでしょうか?これを通して私を助けてください!ありがとうございました!!:)