<script language=javascript>
function del() {
if(window.confirm('你确定要删除该记录!')){
//alert(确定);
return true;
}else{
//alert(取消);
return false;
}
}//del end
</script>
--------------------------------------
if(!window.confirm('该栏目下的所有信息,都将要删除')){
alert(你点了取消);
return false;
}
alert(你点了确定);
-------------------------------------------------
<a href="questlistdel.action?id=<s:property value="id"/> onclick=return window.confirm('您真的想删除本调查问卷吗?该问卷的所有数据将被清空,并且不可恢复!?')>删除</a>
更多js-confirm-确定取消对话框 。