js弹窗

作者: Dxes | 来源:发表于2019-12-10 20:36 被阅读0次
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script type="text/javascript">
            //1.普通对话框(提示信息+确定按钮)
            //alter(提示信息)
//          alert('删除成功!')
            
            //2.批准弹框(提示信息+确定按钮+取消按钮)
            //confirm(提示信息)  - 返回值是选择的结果,false -> 取消; true -> 确定
//          result = confirm('是否确定删除?')
//          console.log(result)
            
            //3.带输入框的提示框(提示信息+输入框+确定按钮+取消按钮)
            //prompt(提示信息)  - 返回值是选择的结果, null -> 取消; 不是null(输入框的内容) -> 确定
            result = prompt('请输入你的姓名:')
            console.log(result)
            
        </script>
    </body>
</html>

相关文章

网友评论

      本文标题:js弹窗

      本文链接:https://www.haomeiwen.com/subject/iofngctx.html