浏览器中的Javascript的简单对话框

简单对话框是指对话框不去做设计,而直接使用默认的,如alert、confirm、prompt;

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<script>
if(confirm("请确认是否继续?")){
    alert("继续"); 
}else{
    alert("下次再见");
}
var name=prompt("你的名字是?")
alert("你好,"+name);
</script>
</body>
</html>

效果如下:

posted @ 2015-06-21 12:21  roytanlu  阅读(195)  评论(0编辑  收藏  举报