日期:2014-05-16 浏览次数:20662 次
<!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>
    <script type="text/javascript">
        window.onload=function ()
        {
            var divobj=document.createElement("div");
            divobj.style.width="300px";
            divobj.style.height="500px";
            divobj.style.border="gray solid 1px";
            divobj.innerHTML="<div style='width:300px;height:500px;overflow:hidden;'>"+
                                "<iframe style='width:100%;height:100%;' frameborder='0' src='http://www.baidu.com' disabled=true></iframe>"+
                            "</div>";
            document.body.appendChild(divobj);
        }
    </script>
</head>
<body>
</body>
</html>