0
我正在開發一個firefox擴展,並且已經在firefox 3中開發它,我去測試它在Firefox 2上,並且由於某種原因,我的HTTP請求都沒有被觸發。請求的格式都低於(使用原型):來自xul的Ajax請求在Firefox中不工作2
theResponse = function(response){
//some code
}
new Ajax.Request(url,{
method:'get',
parameters : {url: currentURL},
onSuccess: theResponse,
onFailure: function(){ alert('Something went wrong...') }
});
我一直在試圖找到一個解決辦法,但最接近的事情,我發現的是財產以後做跨站點HTTPRequests的,任何人有什麼想法?