跳转后全屏,兼容大部分浏览器JavaScript
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跳转后全屏,兼容大部分浏览器JavaScript相关的知识,希望对你有一定的参考价值。
<!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>
以上是关于跳转后全屏,兼容大部分浏览器JavaScript的主要内容,如果未能解决你的问题,请参考以下文章
window.location.href 跳转后再返回浏览器缓存问题