js中window.open打开一个新的页面
更新时间:2014年08月10日 09:17:08 投稿:whsnow
js中window.open打开一个新的页面,其实它的参数有很多,在本例没有涉及到,感兴趣的朋友可以研究下
<!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>
相关文章
深入解析contentWindow, contentDocument
没有永恒的技术只有需求,没有好说的客户只有无奈的开发者,如果iframe的出现是一个错误的话,iframe里边在来一个iframe那是错上加错,神话没有在远古的尘嚣中消失,却在怀具的今天不断上演2013-07-07
javascript scrollLeft,scrollWidth,clientWidth,offsetWidth 完全
javascript scrollLeft,scrollWidth,clientWidth,offsetWidth 完全详解,实例修正版。2009-07-07
Javascript常用运算符(Operators)-javascript基础教程
Javascript常用运算符(Operators)-javascript基础教程...2007-12-12
JavaScript fontcolor方法入门实例(按照指定的颜色来显示字符串)
这篇文章主要介绍了JavaScript fontcolor方法入门实例,fontcolor方法用于按照指定的颜色来显示字符串,需要的朋友可以参考下2014-10-10


最新评论