我正在开发一个 Firefox 扩展,并且一直在 Firefox 3 中开发它,我在 Firefox 2 上对其进行了测试,由于某种原因,我的 HTTP 请求都没有触发。请求的格式如下(使用原型):
theResponse = function(response){
//some code
}
new Ajax.Request(url,{
method:'get',
parameters : {url: currentURL},
onSuccess: theResponse,
onFailure: function(){ alert('Something went wrong...') }
});
我一直在尝试寻找解决方案,但我发现的最接近的事情与跨站点 HTTPrequests 有关,有人有什么想法吗?