comfirm和prompt的区别

comfirm和prompt的区别。

<html>
<title>测试页面</title>
<head>
</head>

<body>
<script>
    function tan(){
        var value = confirm('hello world');
        alert(value);
        var text = prompt('新年快乐','大吉大利');
        alert(text);
    }
</script>

<div style="text-align: center" >
    <br><br/><br/>
    <button style="color: green" onclick="tan()" >点击提示</button>
    <br><br/><br/>
    当警告框出现后,用户需要点击确定按钮才能继续进行操作。
</div>
</body>
</html>
原文地址:https://www.cnblogs.com/wanlibingfeng/p/9001390.html