欢迎访问服务器技术网-www.fuwuqijishu.com

Window confirm() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 42次浏览 0个评论 扫描二维码
文章目录[隐藏]

Window confirm() 方法

Window 对象


定义和用法

confirm()方法用于显示一个带有指定消息和确认及取消按钮的对话框。

如果访问者点击”确定”,此方法返回true,否则返回false。

语法

confirm(message)


浏览器支持

所有主要浏览器都支持 confirm() 方法


实例

实例

显示一个确认框,提醒访客点击什么:

function myFunction(){
    var x;
    var r=confirm(“按下按钮!”);
    if (r==true){
        x=”你按下了\”确定\”按钮!”;
    }
    else{
        x=”你按下了\”取消\”按钮!”;
    }
    document.getElementById(“demo”).innerHTML=x;
}


Window 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2220.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900