Cách 1:
<script>
function confirmDelete(delUrl) {
if (confirm("Bạn có chắc chắn xóa không ?")) {
document.location = delUrl;
}
}
</script>
<a href="confirmDelete('delete.page?id=1')">Delete</a>
}
Cách 2:
<a href="delete.page?id=1" onclick="return confirm('Bạn có chắc chắn xóa không ?')">Delete</a>
Không có nhận xét nào:
Đăng nhận xét