这是代码。你能解释一下"确认"在这里工作。它只是说:"如果有"确认"但是没有命令"确认"事实上。
function ask(question, yes, no) {
if (confirm(question)) {
yes()
}
else {
no();
}
}
function showOk() {
alert( "You are agree." );
}
function showCancel() {
alert( "You cancelled." );
}
ask("Are you agree?", showOk, showCancel);
答案 0 :(得分:-1)
confirm
是内置的js函数(比如很多other functions),它返回true
/ false
。
if (confirm())
或confirm
, if
- true
将首先执行且只有false
才会进行比较