我想在提交答复后再调用另一个提示符,但是LoadNewRecord函数中的LoadNewRecord没有出现。知道吗?
提交提示
$.prompt("Opening Recap with ID " + Recap[0][0].id + ".<br> Note: Any changes on Recap " + header.find("#recap_id").val() + " will not be saved.", {
title: "WARNING",
buttons: {
"Continue": true,
"Cancel": false
},
submit: function(e, v, m, f) {
var Recap_status;
if (v === true) {
Recap_status = Recap[0][0].status;
LoadNewRecord(Recap, header);
return $("#error_history").hide();
} else {
return selectedRecap();
}
}
});提示符在LoadNewRecord函数中:
if (period_lock >= getDateInput(Recap[0][0].recap_date) && Recap_status < 20) {
setTimeout((function() {
$.prompt("You are not allowed to make any changes for all documents before " + period_lock + ". Please contact your administrator for further information");
}), 100);
}注意:我在阅读这个setTimeout后使用问题,但仍然不起作用。
如果我移除LoadNewRecode中的LoadNewRecode或将其更改为alert,一切都可以正常工作。
https://stackoverflow.com/questions/27812825
复制相似问题