日期:2014-05-16 浏览次数:20406 次
<!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=utf-8" />
<script type="text/javascript">
<!--
var sites = [
"http://www.blueidea.com",
"http://www.google.com",
"http://www.baidu.com"
];
function load(index){
document.getElementsByTagName("iframe")[index]["src"]=sites[index];
}
//-->
</script>
</head>
<body>
<iframe style="width: 100%" id="frameContent0" name="frameContent0" frameborder="0" src=""></iframe>
<iframe style="width: 100%" id="frameContent1" name="frameContent1" frameborder="0" src=""></iframe>
<iframe style="width: 100%" id="frameContent2" name="frameContent2" frameborder="0" src=""></iframe>
<input type="button" value="Load BlueIdea" onclick="load(0);" />
<input type="button" value="Load Google" onclick="load(1);" />
<input type="button" value="Load Baidu" onclick="load(2);" />
</body>
</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>
<style>
*{margin:0; padding:0;}
</style>
</head>
<body>
<div id="load" align="center"><img src="http://sc.cnwebshow.com/upimg/allimg/070707/01294420.gif" /> loading...</div> <!-- 首先放一个div,用做loading效果 -->
<iframe id="frameContent0" name="frameContent0" src="http://www.yahoo.com" width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0"></iframe> <!-- src 里面放你想要的网页-->
<script type="text/javascript">
//<![CDATA[
var a = document.getElementById("frameContent0");
var b = document.getElementById("load");
a.style.display = "none"; //隐藏
b.style.display = "block"; //显示
a.onreadystatechange = function() {
if (this.readyState=="complete") { // 解释:一个iframe加载完毕的状态是complete,
b.innerHTML = "load complete!";
b.style.display = "none";
a.style.display = "block";
}
}
//]]>
</script>
</body>