手记

js选择弹框

方法一:直接在超链接里面添加js

<s:a href="http://xxx.blog.163.com/blog/del?user.id=%{#us.id}"  onclick="return confirm('是否删除')">delete</s:a>

方法二:定义好js,然后再超链接里面调用

<script type="text/javascript">     function del(){        if(confirm("是否确定删除该记录?")){         return true;        }else{         return false;        }     }</script><s:a href="http://xxx.blog.163.com/blog/del?user.id=%{#us.id}" onclick="return del();">delete</s:a>

0人推荐
随时随地看视频
慕课网APP