더 이상 말도 안 되는 소리는 그만하고 코드만 게시해 보겠습니다.
구체적인 코드는 다음과 같습니다.
<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>
코드는 단 몇 문장으로 구성되어 있습니다. 궁금한 점이 있으면 메시지를 남겨주시면 편집자가 시간 내서 답변해 드리겠습니다.