本帖最后由 为梦想而活着 于 2014-4-13 20:51 编辑
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Insert title here</title>
- <script type="text/javascript">
- function fun(thisurl){
- if(window.confirm("确认删除吗?")){
- alert("您选择的"是"!");
- }else{
- alert("您选择"否"!");
- }
- }
- </script>
- </head>
- <body >
- <a href="#" onclick="fun()">删除邮件</a>
- </body>
- </html>
复制代码 |
|