js confirm方法的使用方法实例


js confirm方法的使用方法实例

文章插图
如果用户点击确定按钮,则confirm()返回true 。如果点击取消按钮,则confirm()返回false 。
【js confirm方法的使用方法实例】在用户点击确定按钮或取消按钮把对话框关闭之前,它将阻止用户对浏览器的所有输入 。在调用confirm()时,将暂停对JavaScript代码的执行,在用户作出响应之前,不会执行下一条语句 。
下面我们通过这两个小例子,来了解一下它的使用方法吧:
复制代码代码如下:
<html>
<head>
<title>confrim的使用方法</title>
<scripttype="text/javascript">
functionclear1()
{
if(confirm("确定要清空数据吗?"))
{
document.main.text1.value="";
}
}
</script>
</head>
<boty>
<formname="main">
<inputtype="text"name="text1"/>
<inputtype="button"name="submit"value="https://www.myit5.com/answer/数据清空"onclick="returnclear1()"/>
</form>
</body>
</html>
<html>
<head>
<title>jsconfirm</title>
<script>
functionbegin()
{
vara=confirm("郭杨和小代是好朋友吗?");
if(a==true)
{
/*document.write("恭喜你答对了!");*/
alert("恭喜你答对了!");
begin();
}
else
{
/*document.write("你真是猪,这么简单的问题都答不对!");*/
alert("你真是猪,这么简单的问题都答不对!");
begin();
}
}
</script>
</head>
<bodyonload="begin()">
</body>
</html>

    推荐阅读