我正在尝试在 iframe 中的 onload 事件上加载 Ajax 页面(如果可能的话?)。
所以我有一个 iframe:
<iframe onload="loadIjax('ipage','./page.php');"> <div id="ipage"></div> </iframe>
和 Javascript
function loadIjax(divId,strURL)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
// show ajax response
parent.document.getElementById(divID).innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET",strURL,true);
xmlhttp.send();
}
所以想法是在页面加载时在 iframe 中加载 page.php。
我的问题,这甚至可能是迄今为止所写的吗?在这一点上它不起作用。问题是 Javascript 在 iframe 中找不到 div。如果我将相同的 div 放在 iframe 之外,它确实有效。