码迷,mamicode.com
首页 > 其他好文 > 详细

警示框 确认框 提示框

时间:2015-06-28 14:04:32      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

定义三个输入控件,点击进入对应的函数

<html>
<head>
<script>
function show_alert()
{
    alert("I am alert");
}
function show_confirm()
{
    var r = confirm("Press a button!")
    if (r == true)
    {
       alert("You pressed OK!");
    }
    else
    {
       alert("Your pressed Cancel!");
    }
}
function show_prompt()
{
   var name = prompt("Please input your name", "Bill Gates")
    if (name != null && name != "")
    {
         document.write("Hello!" + name + " How are you?")
    }
}
</script>
</head>

<body>
<input type="button" onclick="show_alert()" value="show a alert"/>
<input type="button" onclick="show_confirm()" value="show a confirm"/>
<input type="button" onclick="show_prompt()" value="show a prompt"/>
</body>
</html>

 

警示框 确认框 提示框

标签:

原文地址:http://www.cnblogs.com/kaituorensheng/p/4605385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!