这是一个页面初始化判定控件为空则控件不可用的JS,能否参考这个,调整为判定控件为空则给控件赋一个默认值 true 呢?
var a=this.getValue( );
if(a!=""){
this.setEnable(false);
}
var a = this.getValue();
if (!a) { // a != "" 判空不完全
this.setValue(true); // 设置为true
this.setEnable(false); // 设置为不可用
if后面加一下
else{
你的语句 改为true
可以
直接
改成
this.setValue(true);