function Wopen(){ var box1=confirm("是否打开新标签页?"); var box2=prompt("请输入网址","www.baidu.com"); if(box1==true&&box2="www.baidu.com") window.open('www.baidu.com','width=300,height=300','_top=200'); else alert("SB!你为什么不输入度娘网址!"); }
提示: 使用 if 判断确认框是否点击了确定,如点击弹出输入对话框,否则没有任何操作。