<!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>

 

相关文章:

  • 2021-06-23
  • 2022-02-18
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2022-12-23
  • 2022-01-08
猜你喜欢
  • 2021-11-29
  • 2021-12-09
  • 2022-03-09
  • 2021-09-22
  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
相关资源
相似解决方案