确认框confirm,提示框prompt
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script>
function show_confirm(){
var r=confirm("你是男生吗?");
if(r==true){
alert("你好,先生!")
}else{
alert("你好,女士!")
}
}
function show_prompt(){
var name=prompt("请输入你的姓名","zhaocom");
if(name!=null && name!="")
alert("你好"+name+"今天过的怎么样?")
}
</script>
<button type="button" onclick="show_confirm()">性别确认</button>
<button type="button" onclick="show_prompt()">提示框</button>
</body>
</html>