标签:
<!DOCTYPE html> <html> <head> <title>测试</title> </head> <body> <h1><a onclick="jump()">测试</a></h1> <script> function jump(){ var Cwin= window.open(‘http://baidu.com‘,‘‘,‘status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes‘); Cwin.moveTo(0,0) Cwin.resizeTo(screen.availWidth,screen.availHeight); window.opener=null; window.open(‘‘,‘_self‘) window.close() } </script> </body> </html>
标签:
原文地址:http://www.cnblogs.com/taoxin/p/5619463.html