JS 删除某个信息的时候,点击确定按钮 出现确认是否删除对话框,如何实现
1、新建html文档。
2、书写hmtl代码。<table class="z_i"> <tr class="i0"> <td width="20%">部门</td> <td width="35%">工号</td> <td width="30%">姓名</td><td width="15%">操作</td> </tr>。
3、书写css代码。.z_i { width: 900px; text-align: center; margin: 0 auto; border-collapse: collapse; background: #fff; line-height: 49px; margin-top: 60px; border: 1px solid #e8e8e8; }.z_i td a { color: #18a0da; }.z_i td { height: 49px; font-size: 12px; color: #4b4b4b; }。
4、书写并添加js代码。<script src="js/jquery-1.4.4.min.js"></script><script src="js/qikoo.js"></script>。
5、代码整体结构。
6、查看效果。
if(confirm("确定删除吗")){
location.href="确认后跳转的页面";
}else{
location.href="取消后跳转的页面";
}
}