codecamp

window方法:confirm()

confirm()方法

该Window.confirm()方法显示带有可选消息和两个按钮(“OK”和“Cancle”)的模态对话框。

confirm()方法语法

result = window.confirm(message);
  • message是要在对话框中显示的可选字符串。
  • result是一个布尔值,指示是否选择了“OK”或“Cancle”(true表示“OK”)。

confirm()方法示例

if (window.confirm("Do you really want to leave?")) { 
  window.open("exit.html", "Thanks for Visiting!");
}

输出:

火狐确认 

笔记

对话框是模式窗口 - 它们阻止用户访问程序接口的其余部分,直到对话框关闭。因此,您不应过度使用任何创建对话框(或模式窗口)的函数。无论如何,都有很好的理由避免使用对话框进行确认。

从Chrome 46.0开始,此方法在<iframe>中被阻止,除非sandbox属性具有该allow-modal值。

参数是可选的,规范不要求。

规范

规范状态注释
HTML Living Standard 
规范中'confirm()'的定义。
Living Standard
 
window方法:close()
window方法:convertPointFromNodeToPage()
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Fetch API官方文档指南

Fetch API方法

WindowOrWorkerGlobalScope执行者:window

window属性

WindowOrWorkerGlobalScope执行者:WorkerGlobalScope

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }