在 if/else 中执行此操作相当简单,但我正在尝试了解三元逻辑及其工作原理。这是我第一次尝试。
if(condtion == true){
var showProtected = new dijit.form.CheckBox({
checked: true
})else{
showProtected = new dijit.form.CheckBox({
checked: false
});
});
showProtected.placeAt("showProtected", "first");
}
我累了但不工作:
showProtected = (condition == true) ? new dijit.form.CheckBox({
checked: true
}) : new dijit.form.CheckBox({
checked: false
});
showProtected.placeAt("showProtected", "first");