发布网友 发布时间:2022-04-24 06:55
共1个回答
热心网友 时间:2022-05-07 19:36
<head>
<title> page A </title>
<script type="text/javascript">
function newPage(){
window.open("替换成你的弹窗网址");
}
</script>
</head>
<body onload="newPage()">
<h1>My Website</h1>
</body>
</html>
代码如上。