我正在使用优秀的sweetAlertJS库,单击取消按钮后需要选中一个复选框。
我尝试在cancelButton行之后添加一个匿名函数,但仍未选中该复选框。
cancelButtonText: "No",
function(){
swal({
$("#sameCar").prop("checked", "1");
})
},
现在,当我单击复选框时,首先打开sweetAlert,然后取消选中该复选框。如果我单击“取消”按钮,则未选中该复选框。
使用sweetAlertJs单击取消按钮后,如何检查复选框?