Asp中用confirm实现删除时弹出确定和取消的方法:
第一种
<a class="unnamed2" target="_blank" href="delete.asp?id=id" onclick="if(confirm('确定删除吗?')){window.location.href='delete.asp?id=id';return true}else return false">删除</a>
第二种
onclick="if(confirm('确定删除吗?')){window.location.href='delete.asp?ID=id';return true}else return false"
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
相关文章