<html>
<head>
<title> 提示对话框 </title>
</head>
<body>
<script>
function get_info()
{
var name = prompt("请输入您的姓名","");
var age = prompt("请输入您的年龄","18");
}
</script>
<input type="button" onclick="get_info()" value="单击这里" />
</body>
</html>