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>
相关文章
Javascript实例教程(19) 使用HoTMetal(6)
Javascript实例教程(19) 使用HoTMetal(6)...2006-12-12window.close(); 关闭浏览器窗口js代码的总结介绍
下面小编就为大家带来一篇window.close(); 关闭浏览器窗口js代码的总结介绍。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2016-07-07
最新评论