今天学习了js 中confirm的使用方法
confirm() 方法用于显示一个带有指定消息和 OK 及取消按钮的对话框
如果用户点击确定按钮则 confirm() 返回 true如果点击取消按钮则 confirm() 返回 false
在用户点击确定按钮或取消按钮把对话框关闭之前它将阻止用户对浏览器的所有输入在调用 confirm() 时将暂停对 JavaScript 代码的执行在用户作出响应之前不会执行下一条语句
下面我们通过这两个小例子来了解一下它的使用方法吧
复制代码 代码如下:
<html>
<head>
<title>confrim 的使用方法</title>
<script type="text/javascript">
function clear()
{
if(confirm("确定要清空数据吗?"))
{
documentmaintextvalue="";
}
}
</script>
</head>
<boty>
<form name="main">
<input type="text" name="text"/>
<input type="button" name="submit" value="数据清空" onclick="return clear()"/>
</form>
</body>
</html> <html>
<head>
<title>js confirm</title>
<script>
function begin()
{
var a=confirm("郭杨和小代是好朋友吗?");
if(a==true)
{
/*documentwrite("恭喜你答对了!");*/
alert("恭喜你答对了!");
begin();
}
else
{
/*documentwrite("你真是猪这么简单的问题都答不对!");*/
alert("你真是猪这么简单的问题都答不对!");
begin();
}
}
</script>
</head >
<body onload="begin()">
</body>
</html>