我收到此错误,希望$.ajax()
能够在我的内容脚本中使用
XMLHttpRequest无法加载http://example.com/tab/index.php。 No' Access-Control-Allow-Origin'标头出现在请求的资源上。 Origin' chrome-extension:// gncbffieahbpgabchdjmhipkmahk ****'因此不允许访问。
这就是我的contentscript.js中ajax的样子
$.ajax({type: "GET",url: "http://example.com/tab/index.php", success: function(data){
alert(data);
}});
在我的http://example.com/tab/index.html我已宣布
header('Access-Control-Allow-Origin: *');
知道为什么它仍然不起作用?