我想在jquery对话框显示中禁用某些按钮(带有一些附加条件),我无法执行此操作。我尝试了许多不同的方法,但没有一种方法奏效。我没有想法。
附加示例代码(在coffeescript中):
$('#messages').dialog({
height: 500,
width: 800,
resizable: false,
modal: true,
show: 'fade',
hide: 'clip',
buttons: [
{
id: "msg-close",
text: "Close",
click: ->
$('#msg-close').prop('disabled', true) //this one works
}
],
open: ->
$('#msg-close').prop('disabled', true) //this one doesnt work
});
$('#msg-close').prop('disabled', true) //this one doesnt work