用javascript设计网页如图
发布网友
发布时间:2022-04-29 01:55
我来回答
共3个回答
热心网友
时间:2022-04-24 11:10
<!-- 第一个页面 -->
<html>
<head>
<meta charset="utf-8" />
<style type="text/css">
ul{list-style:none;}
ul li input{background:yellow;}
</style>
<script>
var newwin;
function openWindow(){
newwin = window.open("新窗口.htm");
}
function closeWindow(){
newwin.close();
}
</script>
</head>
<body>
<center>
<ul/>
<li>
<input type="button" onclick="openWindow();" value="打开这个窗口" />
</li>
<li>
<input type="button" onclick="closeWindow();" value="关闭这个窗口" />
</li>
</ul>
</center>
</body>
</html>
<!-- 新窗口.htm -->
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<h1>我是新窗口</h1>
</body>
</html>
热心网友
时间:2022-04-24 12:28
代码书上都给你写出来了,居然自己照着输一下都不愿意
热心网友
时间:2022-04-24 14:03
代码不是都贴在里面了吗。。。