确认框的使用

if (confirm('确定要删除吗?')) {
    alert('已确认可以删除!');
} else {
    alert('放弃了删除!');
}

Copyright © 2024 码农人生. All Rights Reserved