js确认删除对话框
[html]
<span style="font-size:18px"><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"></span>
[html]
<span style="font-size:18px"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /></span>
[html]
<span style="font-size:18px"> <title>js确认删除对话框</title></span>
[html]
<span style="font-size:18px"> </head></span>
[html]
<span style="font-size:18px"> <body></span>
[html]
<span style="font-size:18px"> <p> </span>
[html]
<span style="font-size:18px"> <script language="javascript"> </span>
[html]
<span style="font-size:18px"> function delcfm() { if (!confirm("确认要删除?")) { window.event.returnValue = false; } }</span>
[html]
<span style="font-size:18px"> </script> </span>
[html]
<span style="font-size:18px"> <a href="</span><a target="_blank" href="http://write.blog.csdn.net/postedit"><span style="font-size:18px">http://blog.csdn.net/pplcheer</span></a><span style="font-size:18px">" onClick="delcfm()">删除</a></span>
[html]
<span style="font-size:18px"> </p></span>
[html]
<span style="font-size:18px"><p>代码说明:单击删除的超链接后将执行delcfm()函数,在对话框中,如果点击“确定”,函数将返回true值,就将页面转到<a>标签中的链接页面执行删除的页面;如果点击“取消”,函数将返回false值,<a>标签将不转到执行删除的页面。</p</span>
[html]
<span style="font-size:18px"></span>
[html]
<span style="font-size:18px"></body></span>
[html]
<span style="font-size:18px"></html>
</span>
补充:web前端 , JavaScript ,