服务器之家:专注于服务器技术及软件下载分享
分类导航

node.js|vue.js|jquery|angularjs|React|json|js教程|

服务器之家 - 编程语言 - JavaScript - js中window.open打开一个新的页面

js中window.open打开一个新的页面

2021-02-06 16:43JavaScript教程网 JavaScript

js中window.open打开一个新的页面,其实它的参数有很多,在本例没有涉及到,感兴趣的朋友可以研究下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
/* 打开同一个新的页面,不会再次打开新页面 */
function open1(){
  window.open("html01.html","aaa");
}
function open2(){
  window.open("html02.html","aaa");
}
</script>
</head>
<body>
  <a href="#" rel="external nofollow" rel="external nofollow" onclick="open1()">点击进入1</a>
  <a href="#" rel="external nofollow" rel="external nofollow" onclick="open2()">点击进入2</a>
</body>
</html>

 

延伸 · 阅读

精彩推荐