连锁反应confirm

<script>    function del(){        var flag = confirm("你真要删除么?");        if( flag ){            alert("我已被你抛弃了。")        }else{            alert("真好,我又可以继续陪着你。")        }    }</script>
<body><input type="button" value="删除" onclick="del()"></body>
时间: 2024-11-07 05:02:54

连锁反应confirm的相关文章

HTML DOM confirm()方法使用

confirm()方法用于显示一个带有特点消息的确定和取消的对话框,当用户点击确定时confirm()方法返回true,当用户点击取消时confirm()方法返回false. 1. 触发事件时使用 <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"/> <script type="text/javascrip

alert() confirm() prompt() 的区别?

alert()是警告消息框,属于BOM中的成员函数,就是window.alert( ); window.alert函数弹出的对话框是模式对话框,用户必须关闭消息框才能继续进行操作;由于js没有输入输出,所以浏览器的window对象提供了两个函数alert和prompt对应output和input; prompt()是提示消息框,用户可以根据提示输入字符串:比如var name = prompt('请输入姓名'),就是新声明一个变量name,用于接收用户输入的值: confirm()是确认消息框,

JS alert()、confirm()、prompt()的区别

1.警告消息框alertalert 方法有一个参数,即希望对用户显示的文本字符串.该字符串不是 HTML 格式.该消息框提供了一个“确定”按钮让用户关闭该消息框,并且该消息框是模式对话框,也就是说,用户必须先关闭该消息框然后才能继续进行操作. window.alert("欢迎!请按“确定”继续."); 2.确认消息框confirm 使用确认消息框可向用户问一个“是-或-否”问题,并且用户可以选择单击“确定”按钮或者单击“取消”按钮.confirm 方法的返回值为 true 或 fals

[转]js中confirm实现执行操作前弹出确认框的方法

原文地址:http://www.jb51.net/article/56986.htm 本文实例讲述了js中confirm实现执行操作前弹出确认框的方法.分享给大家供大家参考.具体实现方法如下: 现在在删除或其它操作前弹出确定提示,我们有很多方法,最基本的就是利用js自带的函数confirm来操作了 最简单的用法如下: 鼠标事件使用confirm 复制代码 代码如下: <a href="#" onclick= "if(confirm( '是否确定! ')==false)r

js中confirm揭示三个按钮“是”“否”“取消”

js中confirm提示三个按钮"是""否""取消" 重载DOM中confirm window.confirm = function(str) {   str=str.replace(/\'/g, "'&chr(39)&'").replace(/\r\n|\n|\r/g, "'&VBCrLf&'");   execScript("n = msgbox('"

单选按钮加confirm进行判断返回false任被选中问题

1 <html> 2 <head> 3 4 <script language="javascript"> 5 var checkValue = ""; 6 var radios = document.getElementsByName("test"); 7 function nowChecked(){ 8 for(var i=0;i<radios.length;i++){ 9 if(radios[i].c

alert()、confirm()和prompt()的区别与用法

1.警告消息框alertalert 方法有一个参数,即希望对用户显示的文本字符串.该字符串不是 HTML 格式.该消息框提供了一个"确定"按钮让用户关闭该消息框,并且该消息框是模式对话框,也就是说,用户必须先关闭该消息框然后才能继续进行操作. window.alert("欢迎!请按"确定"继续."); 2.确认消息框confirm 使用确认消息框可向用户问一个"是-或-否"问题,并且用户可以选择单击"确定"

三种对话框的示例(alert,confirm,prompt)

示例代码 <h2>JavaScriptDialog</h2> <hr/> <buttononclick="btn_alert()">alert:警告对话框</button> <buttononclick="btn_confirm()">confirm:确定操作对话框</button> <buttononclick="btn_prompt()">prom

[Angular2 Router] CanDeactivate Route Guard - How To Confirm If The User Wants To Exit A Route

In this tutorial we are going to learn how we can to configure an exit guard in the Angular 2 Router. We are going to learn how to use a CanDeactivate route guard to ask the user if he really wants to exist the screen, giving the user to for example