如何禁用 jquery UI 对话框按钮,例如:
$("#dialog").dialog({ width: 500, modal: true, show: 'drop', hide: 'drop',
buttons: {
"Next": function () {/* do something */ },
"Finish" : function {/* do something */ }
}
});
我想保留disabled the Next button
直到用户选择一些radio button or checkbox
以及用户何时选择其中任何一个'Next button will enabled'
。(当我们安装任何新软件时,我们可以看到相同的行为。)。我该怎么做?