jsp添加删除提示

来源:互联网 发布:淘宝店铺卖家等级 编辑:程序博客网 时间:2024/05/21 23:33

       做项目时,有这样的一个功能:点击删除图片,提示是否删除,选择是,删除。否,取消。


 代码:

<img src="${pageContext.request.contextPath}/images/i_del.gif" width="16" height="16" border="0" style="CURSOR: hand" onclick="return isDel(<s:property value="#content.cid"/>);" />

js:

<script type="text/javascript">//删除function isDel(id) {if(confirm("是否删除"))window.location.href ="${pageContext.request.contextPath}/content_delete.action?cid="+id;}</script>