我正在尝试实现一个静态javascript
/jQuery
脚本来测试我的ajax
功能。例如,这将在我的主目录中的某个地方,并包含ajax
对我的一堆请求localhost
:
function getSomethingAjax(){
$.get('http://127.0.0.1:8888/getSomething',{} , function(json){
getSomethingCallback(json);
}, "json");
}
我的 Firebug 给了我这样的错误:
firebug screenshot http://img443.imageshack.us/img443/4934/tinygrabscreenshot06061.png
但是如果我手动打开页面(只需在浏览器中输入:127.0.0.1:8888/getSomething)我得到匹配的回报。访问 url 有什么区别?我的ajax
请求在等待一个特定的返回值吗?