window-open-hide.html 218 B

12345678910111213
  1. <html>
  2. <body>
  3. <script type="text/javascript" charset="utf-8">
  4. var w = window.open('http://host', '', 'show=no');
  5. if (w == null)
  6. console.log('null');
  7. else
  8. console.log('window');
  9. </script>
  10. </body>
  11. </html>