获取contentScript变量的值并在popup.html中显示:Chrome扩展

时间:2012-03-22 15:18:16

标签: google-chrome google-chrome-extension

我有一个chrome扩展,它通过PHP向sql数据库使用ajax请求,将结果发送回控制台,这是通过以下方式完成的:

background.html

chrome.tabs.executeScript(null,{
    file: 'pagedata.js'
});`

pagedata.js

var xhr =new XMLHttpRequest();
xhr.onreadystatechange=function(){
    tasks = xhr.responseText;
    console.log(tasks);
}
xhr.open("GET","http://localhost/PHP/astarterFiles/pagedata.php",true);
xhr.send();

我遇到麻烦的是在popup.html中的div中显示响应。救命!!! 提前谢谢。

0 个答案:

没有答案