Confirm的用法,是doing sth还是什么
continue doing sth
确定做某事
例句用法
1、His new role could confirm him as one of our leading actors.
他的新角色会确保他跻身我们的一流演员之列。
2、Further scans are required to confirm the diagnosis of an abnormality.
需要进一步扫描来确诊是否出现异常病变。
3、Earlier reports were unable to confirm that there were any survivors.
早先的报道无法证实是否有幸存者。
js 中confirm的用法
confirm() 方法用于显示一个带有指定消息和OK 及取消按钮的对话框。
如果用户点击确定按钮,则confirm() 返回true。如果点击取消按钮,则confirm() 返回false。
在用户点击确定按钮或取消按钮把对话框关闭之前,它将阻止用户对浏览器的所有输入。在调用confirm() 时,将暂停对JavaScript 代码的执行,在用户作出响应之前,不会执行下一条语句。
下面我们通过这两个小例子,来了解一下它的使用方法吧:
《html》
《head》
《title》confrim 的使用方法《/title》
《script type=“text/javascript“》
function clear1()
{
if(confirm(“确定要清空数据吗?“))
{
document.main.text1.value=““;
}
}
《/script》
《/head》
《boty》
《form name=“main“》
《input type=“text“ name=“text1“/》
《input type=“button“ name=“submit“ value=“数据清空“ onclick=“return clear1()“/》
《/form》
《/body》
《/html》
confirm和alert的区别
confirm
[kən’fɜːm] (作动词,名词形式为confirmation)
1、证实,证明(情况属实)
例句:This confirms what I suspected all along.
这证实了我一直以来的怀疑。
2、(某人)证实,肯定,确认
例句:Can you confirm this?
这个你能确定吗?
3、(通常指通过信件或电话)确定,确认(安排或预约)
例句:You make the reservation, and I’ll confirm it in writing.
你来预订,我会去函确认。
4、为…施坚振礼(或坚信礼)(从而正式成为基督教会的成员)
例句:He was confirmed as a member of the Church of England.
他领受了坚振礼,成为英国国教会的一员。
5、使坚定,使确信(自己的决定、信仰或观点)
例句:It has confirmed me in my decision not to become a nun.
这使我更加坚定了不做修女的决心。
6、加强,巩固(地位、角色或权力)
例句:Williams has confirmed his position as the world’s number one snooker player. 威廉姆斯巩固了自己世界头号斯诺克选手的地位。
alert [ə’lɜːt] (可作名词、动词和形容词)
1、n. 警戒,警惕;警报
例句:We should stand by on a hurricane alert .
在暴风雨警戒期间我们应加戒备。
2、adj. 警惕的,警觉的;留心的;思维敏捷的;活泼的
1)例句:We all have to stay alert.
我们大家都必须保持警惕。
2)What the reporter needs most is an alert mind.
记者最需要的是敏捷的思维。
3、vt. 警告;使警觉,使意识到
例句:He wanted to alert people to the activities of the group.
他想提醒人们小心该团体的活动。
二者主要区别:
1、词性上:confirm只能作动词使用,alert可作名词、动词和形容词;
2、词义上不同,详见上面具体解释。
补充知识:
confirm 是JavaScript 语言中HTML DOM的一个方法。主要用法是:显示一个带有指定消息与“确定”及“取消”按钮的对话方块。
alert 是HTML DOM 中用到了一种脚本语言,它的中文意思是“提醒”。它是JavaScript或VBscript脚本语言中窗口window对象的一个常用方法;其主要用法就是在你自己定义了一定的函数以后,通过执行相应的操作,所弹出对话框的语言。并且alert对话框通常用于一些对用户的提示信息。
-confirm的用法