blank.html代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body id="editValue" >
</body>
</html>
default.html代码:
<iframe id="IFeditValue" src="blank.html" scrolling="auto" height="800" width="1000"></iframe>
JS如何取blank.html的id为editValue的 body的值?
------解决方案--------------------
document.getElementById("IFeditValue").contentWindow.document.body.innerHTML
------解决方案--------------------
<iframe id="IFeditValue" src="blank.html" scrolling="auto" height="800" width="1000"></iframe>
<script>
window.onload=function(){
document.getElementById("IFeditValue").contentWindow.document.body.innerHTML
}
</script>
未发布的网站不要使用webkit核心的浏览器来访问,不能相互操作