如何禁用按钮on the jQuery UI dialog。我似乎无法在上面链接的任何文档中找到它。
我在模态确认上有2个按钮(“确认”和“取消”)。在某些情况下,我想禁用“确认”按钮。
答案 0 :(得分:205)
看起来任何人,即使在this linked question,都提出了这个解决方案,类似于Nick Craver给出的答案的第一部分:
$("#dialog").dialog({
width: 480,
height: "auto",
buttons: [
{
id: "button-cancel",
text: "Cancel",
click: function() {
$(this).dialog("close");
}
},
{
id: "button-ok",
text: "Ok",
click: function() {
$(this).dialog("close");
}
}
]
});
然后,在其他地方,你应该可以使用API作为jquery UI按钮:
$("#button-ok").button("disable");
答案 1 :(得分:154)
如果您包含jQuery UI包含的.button()
plugin/widget(如果您拥有完整的库并且是1.8+,那么您可以使用它),您可以使用它来禁用按钮和在视觉上更新状态,如下所示:
$(".ui-dialog-buttonpane button:contains('Confirm')").button("disable");
You can give it a try here ...或者如果您使用的是旧版本或未使用按钮小部件,则可以将其禁用为:
$(".ui-dialog-buttonpane button:contains('Confirm')").attr("disabled", true)
.addClass("ui-state-disabled");
如果您想要在特定对话框中,例如ID,请执行以下操作:
$("#dialogID").next(".ui-dialog-buttonpane button:contains('Confirm')")
.attr("disabled", true);
在:contains()
可能会出现误报的其他情况下,你可以像这样使用.filter()
,但是因为你知道你的两个按钮,所以这里有点过头了。 如果在其他情况下是这种情况,它看起来像这样:
$("#dialogID").next(".ui-dialog-buttonpane button").filter(function() {
return $(this).text() == "Confirm";
}).attr("disabled", true);
这会阻止:contains()
匹配其他内容的子字符串。
答案 2 :(得分:48)
您还可以使用 not 现在记录的disabled
属性:
$("#element").dialog({
buttons: [
{
text: "Confirm",
disabled: true,
id: "my-button-1"
},
{
text: "Cancel",
id: "my-button-2",
click: function(){
$(this).dialog("close");
}
}]
});
要在对话框打开后启用,请使用:
$("#my-button-1").attr('disabled', false);
JsFiddle:http://jsfiddle.net/xvt96e1p/4/
答案 3 :(得分:7)
以下按钮单击功能:
$(function() {
$("#dialog").dialog({
height: 'auto', width: 700, modal: true,
buttons: {
'Add to request list': function(evt) {
// get DOM element for button
var buttonDomElement = evt.target;
// Disable the button
$(buttonDomElement).attr('disabled', true);
$('form').submit();
},
'Cancel': function() {
$(this).dialog('close');
}
}
});
}
答案 4 :(得分:1)
按钮由班级ui-button
标识。要禁用按钮:
$("#myButton").addClass("ui-state-disabled").attr("disabled", true);
除非您动态创建对话框(可能),否则您将知道按钮的位置。所以,要禁用第一个按钮:
$("#myButton:eq(0)").addClass("ui-state-disabled").attr("disabled", true);
ui-state-disabled
类提供了一个非常暗淡的样式的按钮。
答案 5 :(得分:1)
我创建了一个jQuery函数,以使这个任务更容易一些。可能现在有一个更好的解决方案......无论哪种方式,这是我的2cents。 :)
只需将其添加到您的JS文件中:
$.fn.dialogButtons = function(name, state){
var buttons = $(this).next('div').find('button');
if(!name)return buttons;
return buttons.each(function(){
var text = $(this).text();
if(text==name && state=='disabled') {$(this).attr('disabled',true).addClass('ui-state-disabled');return this;}
if(text==name && state=='enabled') {$(this).attr('disabled',false).removeClass('ui-state-disabled');return this;}
if(text==name){return this;}
if(name=='disabled'){$(this).attr('disabled',true).addClass('ui-state-disabled');return buttons;}
if(name=='enabled'){$(this).attr('disabled',false).removeClass('ui-state-disabled');return buttons;}
});};
在具有“对话框”类的对话框中禁用“确定”按钮:
$('.dialog').dialogButtons('Ok', 'disabled');
启用所有按钮:
$('.dialog').dialogButtons('enabled');
启用“关闭”按钮并更改颜色:
$('.dialog').dialogButtons('Close', 'enabled').css('color','red');
所有按钮上的文字为红色:
$('.dialog').dialogButtons().css('color','red');
希望这会有所帮助:)
答案 6 :(得分:1)
function getDialogButton( jqUIdialog, button_names )
{
if (typeof button_names == 'string')
button_names = [button_names];
var buttons = jqUIdialog.parent().find('.ui-dialog-buttonpane button');
for (var i = 0; i < buttons.length; i++)
{
var jButton = $( buttons[i] );
for (var j = 0; j < button_names.length; j++)
if ( jButton.text() == button_names[j] )
return jButton;
}
return null;
}
function enableDialogButton( jqUIdialog, button_names, enable )
{
var button = getDialogButton( jqUIdialog, button_names );
if (button == null)
alert('button not found: '+button_names);
else
{
if (enable)
button.removeAttr('disabled').removeClass( 'ui-state-disabled' );
else
button.attr('disabled', 'disabled').addClass( 'ui-state-disabled' );
}
}
答案 7 :(得分:1)
您可以覆盖按钮数组,只留下您需要的按钮。
$( ".selector" ).dialog( "option", "buttons", [{
text: "Close",
click: function() { $(this).dialog("close"); }
}] );
答案 8 :(得分:1)
此代码会使用&#39; YOUR_BUTTON_LABEL&#39;停用该按钮。你可以替换contains()中的名字。 停用
$(".ui-dialog-buttonpane button:contains('YOUR_BUTTON_LABEL')").button("disable");
替换&#39; YOUR_BUTTON_LABEL&#39;用你的按钮标签。 启用
$(".ui-dialog-buttonpane button:contains('YOUR_BUTTON_LABEL')").button("enable");
答案 9 :(得分:0)
您可以执行此操作以禁用第一个按钮,例如:
$('.ui-dialog-buttonpane button:first').attr('disabled', 'disabled');
答案 10 :(得分:0)
我这样做的方式是
Cancel: function(e) {
$(e.target).attr( "disabled","disabled" );
}
这是我找到的最短最简单的方法。
答案 11 :(得分:0)
如果你正在使用淘汰赛,那么这个更干净。想象一下,你有以下几点:
var dialog = $('#my-dialog').dialog({
width: '100%',
buttons: [
{ text: 'Submit', click: $.noop, 'data-bind': 'enable: items() && items().length > 0, click: onSubmitClicked' },
{ text: 'Enable Submit', click: $.noop, 'data-bind': 'click: onEnableSubmitClicked' }
]
});
function ViewModel(dialog) {
var self = this;
this.items = ko.observableArray([]);
this.onSubmitClicked = function () {
dialog.dialog('option', 'title', 'On Submit Clicked!');
};
this.onEnableSubmitClicked = function () {
dialog.dialog('option', 'title', 'Submit Button Enabled!');
self.items.push('TEST ITEM');
dialog.text('Submit button is enabled.');
};
}
var vm = new ViewModel(dialog);
ko.applyBindings(vm, dialog.parent()[0]); //Don't forget to bind to the dialog parent, or the buttons won't get bound.
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.2.0/knockout-min.js"></script>
<div id="my-dialog">
Submit button is disabled at initialization.
</div>
&#13;
魔法来自jQuery UI source:
$( "<button></button>", props )
你基本上可以通过传递按钮对象来调用任何jQuery实例函数。
例如,如果您想使用HTML:
{ html: '<span class="fa fa-user"></span>User' }
或者,如果您想为按钮添加一个类(您可以通过多种方式执行此操作):
{ addClass: 'my-custom-button-class' }
也许你疯了,想要在dom悬停时将其从按钮上移开:
{ mouseover: function () { $(this).remove(); } }
我真的很惊讶,似乎没有人在这样的无数线程中提到过这个......
答案 12 :(得分:0)
您可以在构建对话框时禁用按钮:
$(function() {
$("#dialog").dialog({
modal: true,
buttons: [
{ text: "Confirm", click: function() { $(this).dialog("close"); }, disabled: true },
{ text: "Cancel", click: function() { $(this).dialog("close"); } }
]
});
});
@import url("https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css");
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<div id="dialog" title="Confirmation">
<p>Proceed?</p>
</div>
或者您可以在创建对话框后随时禁用它:
$(function() {
$("#dialog").dialog({
modal: true,
buttons: [
{ text: "Confirm", click: function() { $(this).dialog("close"); }, "class": "confirm" },
{ text: "Cancel", click: function() { $(this).dialog("close"); } }
]
});
setTimeout(function() {
$("#dialog").dialog("widget").find("button.confirm").button("disable");
}, 2000);
});
@import url("https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css");
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<div id="dialog" title="Confirmation">
<p>Button will disable after two seconds.</p>
</div>
答案 13 :(得分:0)
这对我有用 -
$("#dialog-confirm").html('Do you want to permanently delete this?');
$( "#dialog-confirm" ).dialog({
resizable: false,
title:'Confirm',
modal: true,
buttons: {
Cancel: function() {
$( this ).dialog( "close" );
},
OK:function(){
$('#loading').show();
$.ajax({
type:'post',
url:'ajax.php',
cache:false,
data:{action:'do_something'},
async:true,
success:function(data){
var resp = JSON.parse(data);
$("#loading").hide();
$("#dialog-confirm").html(resp.msg);
$( "#dialog-confirm" ).dialog({
resizable: false,
title:'Confirm',
modal: true,
buttons: {
Close: function() {
$( this ).dialog( "close" );
}
}
});
}
});
}
}
});