您好,欢迎访问一九零五行业门户网

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.lanrentuku.com/" onclick="delcfm()">删除</a></p> <p>代码说明:单击删除的超链接后将执行delcfm()函数,在对话框中,如果点击“确定”,函数将返回true值,就将页面转到<a>标签中的链接页面执行删除的页面;如果点击“取消”,函数将返回false值,<a>标签将不转到执行删除的页面。</p> <p>查找更多代码,请访问:<a href="http://www.lanrentuku.com" target="_blank">懒人图库</a></p> </body> </html>
更多js执行删除前的判断代码。
其它类似信息

推荐信息