window.open打开窗体和if嵌套

<script>
    function openWindow(){
var my=confirm("你要打开窗口吗?")
if(my==true){
    var url=prompt("通过输入对话框,确定打开的网址","http://www.imooc.com")
    if(url!=null){
    window.open('htttp://www.refw.org.cn','_blank','width=300,height=300,scrollbars=no,menubar=no')}
else{
    alert('不打开');
}                                             /*if嵌套*/
}
else{
    alert("88")
    }
    }
</script>
<body>
    <input type="button" onclick="openWindow()" value="点击">
</body>

上一篇:分析占用了大量CPU处理时间的是Java进程中哪个线程


下一篇:分析占用了大量 CPU 处理时间的是Java 进程中哪个线程