这个是干什么的?
呵呵 看了就知道了。
同时打开两个页面。
网上很多办法都被浏览器挡掉了,only这个通了,
将它作为首页面就可以解决看起来是同时打开了两个页面
哈哈
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8" />
- <title>Example</title>
- <script type="text/JavaScript">
- function popUp(winURL) {
- window.open(winURL,"popup");
- }
- window.onload = function() {
- lnk = document.getElementById("popupwindow");
- lnk.click();
- window.close();
- }
- </script>
- </head>
- <body>
- <a href="" id="popupwindow" class="popup" onclick="popUp('')" style="display:none"></a>
- </body>
- </html>
阅读(946) | 评论(0) | 转发(0) |