【代码分享】打开新窗口。

Yranky Dou 讨论 2019-10-03

实现的功能
首先弹出confirm消息框
判断true 和 false
如果为true
点击按钮会打开bbs.douyeblog.top
不是true会打开douyeblog.top
代码如下

<html>
 <head>
  <script type="text/javascript">  
    
    var mymessage=confirm("打开?");
    if(mymessage==true)
{function openwindow(){
    window.open('http://bbs.douyeblog.top/','_target','width=400px,height=500px,menubar=no,toolbar=no')
}
} 
    else
{function openwindow(){
    window.open('http://douyeblog.top/','_target','width=400px,height=500px,menubar=no,toolbar=no')
}
} 
    
  </script> 
 </head> 
 <body> 
      <input type="button" value="新窗口打开网站" onclick="openwindow()" /> 
 </body>
</html>
PREV
【学习笔记】JavaScript打开新窗口(window.open)与关闭窗口(window.close)
NEXT
【学习笔记】DOM---通过ID获取元素