欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JavaScript Prompt,confirm(alert提示框)

程序员文章站 2022-04-08 12:14:24
...
<!DOCTYPE html>
<html>
<head>
	<title>demo</title>
	<meta charset="utf-8">
</head>
<body>

<h2>JavaScript Prompt,confirm(alert提示框)</h2>

<input type="button" onclick="disp_prompt()" value="Display a prompt box" />
<input type="button" onclick="disp_confirm()" value="Display a confirm box" />
<p id="demo"></p>

<script>
function disp_prompt()
  {
  var name=prompt("Please enter your name","zh");//prompt(text,defaultText)
  //如果用户单击提示框的取消按钮,则返回 null。如果用户单击确认按钮,则返回输入字段当前显示的文本。
  if (name!=null && name!="")
    {
    document.write("Hello " + name + "!")
    }
}

function disp_confirm()
  {
  var r=confirm("Press a button")
  if (r==true)
    {
    document.write("You pressed OK!")
    }
  else
    {
    document.write("You pressed Cancel!")
    }
  }
</script>

</body>
</html>