JS控制控件隐藏问题

JS根据控制当前控件的内容来控制相关控件的显示/隐藏。自己根据文档写的JS发现只能执行一次,请大佬帮忙看下!JS如下:

var KJ = this.options.form.getWidgetByName("月").getValue();

if (KJ = "月") {

this.options.form.getWidgetByName("label3").setVisible(false); //label3隐藏

} else {

this.options.form.getWidgetByName("label3").setVisible(true); //label3显示

}

备注:“月”为单选按钮组控件,事件设置为“状态改变”,label3为标签控件

FineReport PILGRIM 发布于 2023-8-11 14:44
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
1
snrtuemcLv8专家互助
发布于2023-8-11 14:45

js中等于需要两个=号

var KJ = this.options.form.getWidgetByName("月").getValue();

if (KJ == "月") {

this.options.form.getWidgetByName("label3").setVisible(false); //label3隐藏

} else {

this.options.form.getWidgetByName("label3").setVisible(true); //label3显示

}

最佳回答
1
用户k6280494Lv6资深互助
发布于2023-8-11 14:47

var KJ = this.getValue();

if (KJ == "月") {

this.options.form.getWidgetByName("label3").setVisible(false); //label3隐藏

} else {

this.options.form.getWidgetByName("label3").setVisible(true); //label3显示

}

  • 2关注人数
  • 408浏览人数
  • 最后回答于:2023-8-11 14:47
    请选择关闭问题的原因
    确定 取消
    返回顶部