HTML 事件执行前弹出提示

 在执行方法前弹出提示,用户点击“是”则执行方法,点击”否”则不执行

HTML版  asp:button OnClientClick +OnClick  (https://www.cnblogs.com/hhkkomg/p/15036032.html)

<a href="javascript:void(0);" onclick=" doCz(‘aaa‘,‘6d06009f-c3ac-4264-86c0-b48d43b68325‘);return false;">            
<i class=" icon-key bigger-120" title="重置密码"></i>        
</a>            

              
               //function doCz(name, obj) {
                //    return confirm("您确定要重置“" + name + "”的密码吗?");
                //}

                function doCz(name,id){
                    if (confirm("您确定要重置“" + name + "”的密码吗?")) {
                        //是,自己的代码
      

                    } else {
                        //否
                        return false;
                    }
                }

 

HTML 事件执行前弹出提示

上一篇:html select 省市联动js实现


下一篇:shell 命令行中格式化输出 json