js---window对象的三种窗口
Posted Ipeter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js---window对象的三种窗口相关的知识,希望对你有一定的参考价值。
============================================================================ window对象的三种窗口.html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <script type="text/javascript"> function show1() { window.alert("我今年18岁!"); } function show2() { if(window.confirm("你是男生吗?")) { window.alert("要多运动"); } else { window.alert("要多化妆!"); } } function show3() { if (parseInt(window.prompt("你的年龄:","18"))>18) { window.alert("你是成年人!"); } else { window.alert("你还小!"); } } </script> <body> <input type="button" value="窗口1" onclick="show1()" /> <input type="button" value="窗口2" onclick="show2()"/> <input type="button" value="窗口3" onclick="show3()"/> </body> </html>
以上是关于js---window对象的三种窗口的主要内容,如果未能解决你的问题,请参考以下文章