HTML中frameset全屏切换
gong.htm代码:
<html>
<frameset cols="50%,50%" id="main">
<frame id="sj" src="index.htm">
<frame id ="dt" src="zuoyou.htm">
</frameset>
</html>index.htm代码:
<!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>TrueVision</title>
</head>
<body >
左边
</body>
</html>zuoyou.htm代码:
<html>
<head>
<script type="text/javascript">
function goResize() {
var txt = document.getElementById("bt").value;
if (txt == "全屏") {
fs = top.document.getElementById("main");
fs.cols = "0,*";
document.getElementById("bt").value="取消";
} else {
fs = top.document.getElementById("main");
fs.cols = "50%,*";
document.getElementById("bt").value="全屏";
}
}
</script>
</head>
<body>
<input type="button" value="全屏" id="bt" name="bt" onclick="goResize();" />
</body>
</html> 相关推荐
lupeng 2020-11-14
sjcheck 2020-11-10
meylovezn 2020-08-28
owhile 2020-08-18
Francismingren 2020-08-17
pythonclass 2020-07-29
sunzhihaofuture 2020-07-19
爱读书的旅行者 2020-07-07
行吟阁 2020-07-05
tianqi 2020-07-05
行吟阁 2020-07-04
冰蝶 2020-07-04
lyg0 2020-07-04
owhile 2020-07-04
opspider 2020-06-28
lengyu0 2020-06-28
tianqi 2020-06-21
dadaooxx 2020-06-16