首页  >  文章  >  web前端  >  js中window.open打开一个新的页面_基础知识

js中window.open打开一个新的页面_基础知识

WBOY
WBOY原创
2016-05-16 16:40:001199浏览
<!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>
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn