• JS执行删除前的判断


    JS执行删除前如何实现判断。

    一、 

    <script> 

    function del(){
    if(confirm("确认删除吗")){
    alert("yes");
    }
    else{
    alert("no")
    return;
    }
    }
    </script>
    <html>
    <input type="button" value="del" onclick="del();">

    </html>

    二、
    <a href='/console/oneYear.action?id=<s:property value="id" />'>编辑</a> | <a href='javascript:delMonthMessage("<s:property value="twoid" />")' onclick="return confirm('确定将此记录删除?')">删除</a>

    三、
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>js确认删除对话框-懒人图库</title>
    </head>

    <body>
    <p>
    <script language="javascript">
    function delcfm() {
    if (!confirm("确认要删除?")) {
    window.event.returnValue = false;
    }
    }
    </script>
    <a href="http://www.jbxue.com/" onClick="delcfm()">删除</a></p>
    <p>代码说明:单击删除的超链接后将执行delcfm()函数,在对话框中,如果点击“确定”,函数将返回true值,就将页面转到<a>标签中的链接页面执行删除的页面;如果点击“取消”,函数将返回false值,<a>标签将不转到执行删除的页面。</p>
    <p>查找更多代码,请访问:<a href="http://www.jbxue.com" target="_blank">懒人图库</a></p>
    </body>
    </html>

  • 相关阅读:
    Docker私有仓库
    Docker入门
    HBase表的数据导出和导入
    HBase shell的使用记录
    Redis集群模式(Cluster)部署
    Oracle数据库sqlldr工具的使用
    oracle使用impdp和expdp导入导出数据
    Linux自动同步时间的方法
    Linux配置ssh免密码登陆
    Linux中逻辑卷(LV)的创建、增大和减小
  • 原文地址:https://www.cnblogs.com/cfinder010/p/3555203.html
Copyright © 2020-2023  润新知