AutoCAD 3DMAX C语言 Pro/E UG JAVA编程 PHP编程 Maya动画 Matlab应用 Android
Photoshop Word Excel flash VB编程 VC编程 Coreldraw SolidWorks A Designer Unity3D
 首页 > JavaScript

Window.Open打开窗体和if嵌套代码

51自学网 http://www.wanshiok.com
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>

代码就这么简单几句,有任何疑问欢迎给我留言,小编会及时给大家回复的!


window.open窗体,if嵌套  
上一篇:jQuery基于json与cookie实现购物车的方法  下一篇:jQuery设置Cookie及删除Cookie实例分析