码迷,mamicode.com
首页 > Web开发 > 详细

JS中的几个弹出框用法及注意

时间:2018-12-19 14:15:57      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:als   color   har   div   code   style   utf-8   ons   script   

警告框:alert(警告信息)

确认框:conifrm(提示信息)

输入框:prompt(提示信息)

 1 <html>
 2     <head>
 3         <meta charset="utf-8" />
 4         <title>几个弹出框</title>
 5     </head>
 6     <body>
 7         <button onclick="jinggao();">警告框</button>
 8         <button onclick="queren();">确认框</button>
 9         <button onclick="shuru();">输入框</button>
10     </body>
11     <script>
12         function jinggao()
13         {
14             // alert(‘警告‘)
15             window.alert(‘警告‘)
16         }
17         function queren()
18         {
19             var ret = window.confirm(‘您确定要删库跑路吗?‘)
20             // 点击确定返回true,点击取消返回false
21             console.log(ret)
22         }
23         function shuru()
24         {
25             var ret = window.prompt(‘请输入您要删除的用户名:‘, ‘默认值‘)
26             // 返回的内容就是输入框中输入的内容,点击取消返回null
27             console.log(ret)
28         }
29     </script>
30 </html>

window.函数:表明这个函数属于window,可省略

JS中的几个弹出框用法及注意

标签:als   color   har   div   code   style   utf-8   ons   script   

原文地址:https://www.cnblogs.com/szqlvlll/p/10142685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!