1 Star 2 Fork 2

eogee/JS入门教程

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test19.html 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
eogee 提交于 2022-06-21 15:49 . 19-21讲义及代码
<!DOCTYPE html>
<html>
<head>
<title>19Javascript HTML BOM浏览器对象模型</title>
<meta charset="UTf-8">
</head>
<body>
<h1>19Javascript HTML BOM浏览器对象模型</h1>
<p id = "demo"></p>
<script>
var w = window.innerWidth;
var h = window.innerHeight;
document.getElementById("demo").innerHTML = "浏览器的window宽度:" + w + ",高度:" + h;
</script>
<p>点击下方按钮来打开一个窗口</p>
<button onclick="OpenWindow()">点击</button>
</script>
<p>点击下方按钮来调整窗口大小</p>
<button onclick="ChangeWindow()">点击</button>
<script>
var w;
function OpenWindow(){
w = window.open('','','width = 100,height = 100');
//第1个参数url:打开的网址;第2个参数name:name等网页的各种信息;第3个参数specs(规格):可以设置窗口的最小宽度和高度
w.focus();//将焦点窗口置于最前端(上面)
}
function ChangeWindow(){
w.resizeTo(500,500);
w.focus();
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eogee/js.git
[email protected]:eogee/js.git
eogee
js
JS入门教程
master

搜索帮助