onLoad()出错

时间:2013-05-16 08:56:32

标签: javascript html

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

<!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>

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

0 个答案:

没有答案