代码如下:
<!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=utf-8" /> <title>确认是否删除</title> <script type="text/javascript"> function del(){ if(!confirm("确认要删除?")){ window.event.returnvalue = false; } } </script> </head> <body> <a href="http://www.baidu.com" onclick="return del()">删除</a> </body> </html>
更多js弹出确认是否删除对话框。
