测试函数绑定到按钮单击事件。我是 jquerymobile 的新手,我正在尝试获取 JSON 响应。我已经完成了 JQUERY 文档所说的,但没有调用回调函数。
你能告诉我我做错了什么吗?
function test(evt) {
// addNote($('#title').val(),$('#note').val());
alert("hello");// <----This alert is displayed
$.get("http://weather.yahooapis.com/forecastjson?w=2502265",{}, function (data) {
alert("testing");//<--This alert is NOT displayed
alert("Data Loaded: " + data);//<--This alert is NOT displayed
}, "json");
alert("Hello");//// <----This alert is displayed
}