jQuery를 사용하여 Yes(예) 또는 No(아니오) 확인 상자
확인/취소 버튼 대신 jQuery를 사용하여 예/아니오 알림을 원합니다.
jQuery.alerts.okButton = 'Yes';
jQuery.alerts.cancelButton = 'No';
jConfirm('Are you sure??', '', function(r) {
if (r == true) {
//Ok button pressed...
}
}
다른 대안은 없나요?
ConfirmDialog('Are you sure');
function ConfirmDialog(message) {
$('<div></div>').appendTo('body')
.html('<div><h6>' + message + '?</h6></div>')
.dialog({
modal: true,
title: 'Delete message',
zIndex: 10000,
autoOpen: true,
width: 'auto',
resizable: false,
buttons: {
Yes: function() {
// $(obj).removeAttr('onclick');
// $(obj).parents('.Parent').remove();
$('body').append('<h1>Confirm Dialog Result: <i>Yes</i></h1>');
$(this).dialog("close");
},
No: function() {
$('body').append('<h1>Confirm Dialog Result: <i>No</i></h1>');
$(this).dialog("close");
}
},
close: function(event, ui) {
$(this).remove();
}
});
};
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
경고 메서드는 사용자가 닫을 때까지 실행을 차단합니다.
확인 기능을 사용합니다.
if (confirm('Some message')) {
alert('Thanks for confirming');
} else {
alert('Why did you press cancel? You should have confirmed');
}
다음 코드를 사용했습니다.
HTML:
<a id="delete-button">Delete</a>
jQuery:
<script>
$("#delete-button").click(function(){
if(confirm("Are you sure you want to delete this?")){
$("#delete-button").attr("href", "query.php?ACTION=delete&ID='1'");
}
else{
return false;
}
});
</script>
이 코드들은 저에게 효과가 있지만, 이것이 적절한지는 잘 모르겠습니다.당신은 어떻게 생각하나요?
jQuery 플러그인 jquery.confirm을 확인하십시오.
<a href="home" class="confirm">Go to home</a>
다음과 같은 경우:
$(".confirm").confirm();
링크를 따라 이동하기 전에 확인 팝업이 표시됩니다.
여기 데모가 있습니다. http://myclabs.github.com/jquery.confirm/
제가 본 예들은 모두 다른 "예/아니오" 유형의 질문에 재사용할 수 없습니다.콜백을 지정하여 어떤 상황에서도 전화를 걸 수 있는 방법을 찾고 있었습니다.
다음 사항이 저에게 잘 적용되고 있습니다.
$.extend({ confirm: function (title, message, yesText, yesCallback) {
$("<div></div>").dialog( {
buttons: [{
text: yesText,
click: function() {
yesCallback();
$( this ).remove();
}
},
{
text: "Cancel",
click: function() {
$( this ).remove();
}
}
],
close: function (event, ui) { $(this).remove(); },
resizable: false,
title: title,
modal: true
}).text(message).parent().addClass("alert");
}
});
그런 다음 이렇게 부릅니다.
var deleteOk = function() {
uploadFile.del(fileid, function() {alert("Deleted")})
};
$.confirm(
"CONFIRM", //title
"Delete " + filename + "?", //message
"Delete", //button text
deleteOk //"yes" callback
);
대화 상자에서 답을 얻는 데 어려움을 겪었지만, 결국 이 다른 질문 표시(예 및 없음 버튼 대신 확인 취소) 상자의 답과 모드 확인 대화 상자의 코드 일부를 결합하여 해결책을 찾았습니다.
다음은 다른 질문에 대해 제안된 내용입니다.
고유한 확인 상자를 만듭니다.
<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();
}
}
});
제가 한 또 다른 변경 사항은 TulasiRam이 답변에서 했던 것처럼 doConfirm 함수 내에 confirmBox div를 만드는 것이었습니다.
나는 OK와 Cancel 버튼에 번역을 적용해야 했습니다.동적 텍스트를 제외하고 코드를 수정했습니다(내 번역 함수 호출).
$.extend({
confirm: function(message, title, okAction) {
$("<div></div>").dialog({
// Remove the closing 'X' from the dialog
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); },
width: 500,
buttons: [{
text: localizationInstance.translate("Ok"),
click: function () {
$(this).dialog("close");
okAction();
}
},
{
text: localizationInstance.translate("Cancel"),
click: function() {
$(this).dialog("close");
}
}],
close: function(event, ui) { $(this).remove(); },
resizable: false,
title: title,
modal: true
}).text(message);
}
});
사용...매우 간단합니다. 확인 대화 상자를 사용하여 YES|NO로 경고를 표시합니다.
if(confirm("업그레이드하시겠습니까?"){당신의 코드}
확인을 다시 사용할 수 있습니다.
function doConfirm(body, $_nombrefuncion)
{ var param = undefined;
var $confirm = $("<div id='confirm' class='hide'></div>").dialog({
autoOpen: false,
buttons: {
Yes: function() {
param = true;
$_nombrefuncion(param);
$(this).dialog('close');
},
No: function() {
param = false;
$_nombrefuncion(param);
$(this).dialog('close');
}
}
});
$confirm.html("<h3>"+body+"<h3>");
$confirm.dialog('open');
};
// for this form just u must change or create a new function for to reuse the confirm
function resultadoconfirmresetVTyBFD(param){
$fecha = $("#asigfecha").val();
if(param ==true){
// DO THE CONFIRM
}
}
//Now just u must call the function doConfirm
doConfirm('body message',resultadoconfirmresetVTyBFD);
언급URL : https://stackoverflow.com/questions/3519861/yes-or-no-confirm-box-using-jquery
'programing' 카테고리의 다른 글
쿼리 중에 MySQL 서버에 대한 연결 끊김' 오류가 자주 발생하는 이유(시간 초과 발생, 쿼리 전 ping) (0) | 2023.08.13 |
---|---|
Swift UI @ 바인딩 초기화 (0) | 2023.08.13 |
자바스크립트에서 window.navigate 또는 document.location을 사용해야 합니까? (0) | 2023.08.13 |
@Init의 Angular 2에서 입력 속성이 정의되지 않았습니다. (0) | 2023.08.13 |
IIS 7 로그 파일 자동 삭제? (0) | 2023.08.13 |