我需要注入一些數據,這些數據存在於當前頁面加載的另一個頁面(url)中。下面是我使用的代碼。但它不起作用,下面的代碼有問題,我該如何調試這個問題?使用java腳本注入另一個頁面
function loadHTML(url, storage)
{
var xhr = createXHR();
xhr.onreadystatechange=function()
{
if(xhr.readyState == 4)
{
//if(xhr.status == 200)
{
storage.innerHTML = getBody(xhr.responseText);
}
}
};
xhr.open("GET", url , true);
xhr.send(null);
}
function loadWholePage(url)
{
/**
storage is the div id where I want to inject html
*/
var y = document.getElementById("storage");
loadHTML(url, y);
}
window.onload = function()
{
loadWholePage('link_to_the_page') ;
};