我有一组复选框和一个QUERY按钮,因此用户可以检查一些内容并单击QUERY按钮进行服务调用以返回记录。如果没有选中任何复选框,如何禁用QUERY按钮?
以下是我写的代码。当我第一次取消选中所有这些时,QUERY按钮被禁用。但当我再次检查其中一个复选框时,数组“未选中”变为空。请帮忙!
_bindChkChangeEvent: function(){
var unchecked = [];
on(query('.chk'), 'change', lang.hitch(this, function(event) {
if(!event.target.checked){
if(unchecked.indexOf(event.target.id) < 0)
unchecked.push(event.target.id);
}
else{
if(unchecked.indexOf(event.target.id) > -1)
unchecked.splice(event.target.id);
}
this._switchQueryBtn(unchecked);
}));
},
_switchQueryBtn: function(unchecked){
if(unchecked.length == 10)
html.addClass(this.btnQuery, 'disabled');
else
html.removeClass(this.btnQuery, 'disabled');
},
答案 0 :(得分:1)
在以下链接的工作示例中,您可以尝试将此概念应用于您的代码(遗憾的是,该问题仅包含部分代码视图)。
https://jsfiddle.net/zmh7bbrf/
脚本的作用:
onChange
。showHideButton
实际上包含显示或隐藏按钮的逻辑。showHideButton
运行,按钮被禁用。showHideButton
。该脚本可以使用任意数量的复选框,只需添加它们的引用并修改showHideButton
函数中的逻辑。
注意:
您可以使用dijit/registry
查找小部件的引用,而不是使用dojo/query
并直接查询DOM,就像原始问题中的代码一样。
有关dijit/registry
的更多信息,请访问:
https://dojotoolkit.org/reference-guide/1.10/dijit/registry.html
require(["dijit/form/CheckBox", "dijit/registry", "dijit/form/Button", "dojo/domReady!"], function(CheckBox, registry, Button) {
new CheckBox({
id: "checkBox0",
name: "checkBox0",
value: "option0",
checked: false,
onChange: function(event) {
showHideButton();
}
}, "checkBox0").startup();
new CheckBox({
id: "checkBox1",
name: "checkBox1",
value: "option1",
checked: false,
onChange: function(event) {
showHideButton();
}
}, "checkBox1").startup();
new Button({
label: "Click me!",
onClick: function() {;
}
}, "button").startup();
var showHideButton = function() {
var checkBox0 = registry.byId('checkBox0'),
checkBox1 = registry.byId('checkBox1'),
button = registry.byId('button');
if (!checkBox0.checked && !checkBox1.checked) {
button.set('disabled', true);
} else {
button.set('disabled', false);
}
};
showHideButton();
});
<input id="checkBox0" />
<label for="checkBox">Option 0</label>
<br>
<input id="checkBox1" />
<label for="checkBox">Option 1</label>
<br>
<button id="button" type="button"></button>