获取会话框prompt的返回值,见例子:
<html>
<head>
<script type="text/javascript">
if(prompt("请输入密码","") == "admin"){
document.write("密码正确");
}else{
document.write("密码错误");
}
</script>
</head>
</html>
<head>
<script type="text/javascript">
if(prompt("请输入密码","") == "admin"){
document.write("密码正确");
}else{
document.write("密码错误");
}
</script>
</head>
</html>
注意:
prompt返回数据类型是字符串。
alert():无返回值;
confirm():返回true 或 false