哪位大神帮忙看看,点了按钮没反应,不知道哪里错了。。
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var new=confirm("是否打开网页");
if(new==true){
var win=prompt("确定打开网址");
}
if(win!=null){
window.open(`http://www.imooc.com`,`_blank`,`width=400,height=500,menubar=no,toolbar=no`)
}
else
{document.write("再见");}
else
{document.write("再见");}}