ฉันมีปัญหาในการรับคำตอบกลับจากกล่องโต้ตอบ แต่ในที่สุดก็หาวิธีแก้ปัญหาโดยการรวมคำตอบจากคำถามอื่นนี้แสดงใช่และไม่ใช่ปุ่มแทนการตกลงและยกเลิกในการยืนยัน - กล่องที่มีบางส่วนของรหัสจากกล่องโต้ตอบการยืนยันโมดอล
นี่คือสิ่งที่แนะนำสำหรับคำถามอื่น ๆ :
สร้างกล่องยืนยันของคุณเอง:
<div id="confirmBox">
<div class="message"></div>
<span class="yes">Yes</span>
<span class="no">No</span>
</div>
สร้างconfirm()
วิธีการของคุณเอง:
function doConfirm(msg, yesFn, noFn)
{
var confirmBox = $("#confirmBox");
confirmBox.find(".message").text(msg);
confirmBox.find(".yes,.no").unbind().click(function()
{
confirmBox.hide();
});
confirmBox.find(".yes").click(yesFn);
confirmBox.find(".no").click(noFn);
confirmBox.show();
}
เรียกตามรหัสของคุณ:
doConfirm("Are you sure?", function yes()
{
form.submit();
}, function no()
{
// do nothing
});
การเปลี่ยนแปลงของ
ฉันฉันได้ปรับแต่งข้างต้นเพื่อที่แทนที่จะเรียกว่าconfirmBox.show()
ฉันใช้confirmBox.dialog({...})
แบบนี้
confirmBox.dialog
({
autoOpen: true,
modal: true,
buttons:
{
'Yes': function () {
$(this).dialog('close');
$(this).find(".yes").click();
},
'No': function () {
$(this).dialog('close');
$(this).find(".no").click();
}
}
});
การเปลี่ยนแปลงอื่น ๆ ที่ฉันทำคือการสร้าง div confirmBox ภายในฟังก์ชัน doConfirm เหมือนที่ ThulasiRam ทำในคำตอบของเขา