打开网页时自动在div中加载一个网页
发布网友
发布时间:2022-04-21 11:03
我来回答
共2个回答
热心网友
时间:2022-04-21 12:32
这个页面的功能是能实现的,你说的实现不好是指什么?
还有,既然是加载就显示,为什么不把object对象直接写在html中,而是需要使用js代码加载?
<!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>
<meta http-equiv="content-type" content="text/html; charset=gb2312"/>
<meta http-equiv="Content-Script-Type" Content="text/javascript"/>
<meta http-equiv="Content-Style-Type" content="text/css"/>
<meta http-equiv="Author" content="Langtse"/>
<title>使用Object实现Iframe功能</title>
<style>
#iframe{border:1px solid silver;width:640px;height:480px;padding:2px;}
object{border:1px solid silver;width:638px;height:478px;}
</style>
</head>
<body onload="">
<div id="iframe"><object id="obj1" type="text/html" data="http://www.cu.com"></object></div>
</body>
</html>
热心网友
时间:2022-04-21 13:50
<script>
function btnClick(){
var mb="网址"
var ifra=document.getElementById("iframe");
ifra.innerHTML='<iframe src="+mb+" name="main" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>>';//这里用iframe
}
</script>