0

我在以下代码中收到错误:

<!DOCTYPE html>
<html>
<head>
<script language="text/javascript">
function autoResize(id){
    var newheight;
    var newwidth;

    if(document.getElementById){
        newheight=document.getElementById(id).contentWindow.document.body.scrollHeight;
        newwidth=document.getElementById(id).contentWindow.document.body.scrollWidth;
    }

    document.getElementById(id).height= (newheight) + "px";
    document.getElementById(id).width= (newwidth) + "px";
}
</script>
</head>
<body>
<iframe src="http://www.w3schools.com"  id="iframe1" onLoad="autoResize(this);"></iframe>
</body>
</html>

我检查了所有的报价,但没有发现任何问题。错误:预期对象

4

0 回答 0