我正在尝试使用javascript从我的框架之一访问html文档,但是出现Uncaught DOMException: Blocked a frame with origin "null" from accessing a cross-origin frame.
错误。
这是主页:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<script>
(function(window, document, undefined){
window.onload = init;
function init(){
var iframe = document.getElementById('main_frame');
var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
var ulObj = innerDoc.getElementById("div-content");
console.log(ulObj.innerHTML);
}
})(window, document, undefined);
</script>
</head>
<frameset rows="*" noresize="noresize" border="0" frameborder="no" framespacing="0">
<frame src="frame.html" id="main_frame" frameborder="no" marginheight="0" marginwidth="0">
</frameset>
</html>
这是框架:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="div-content">
abc
</div>
</body>
</html>
如您所见,我正在尝试提取div
的内容:“ abc”。
我认为:iframe.contentDocument : iframe.contentWindow.document
均为空,我也不知道为什么。
答案 0 :(得分:0)
如果您试图在没有Web服务的情况下尝试直接从浏览器访问框架,则由于安全原因(您可以访问系统文件)而被禁止。
我通过安装xampp解决了我的问题,并将我所有的文件都移到了htdocs中,一切正常。