用单选框 自定义了两个值 实际值 1,2 ,显示值 五六七,七八九 ; 事件中 JS 这样写,怎么无论如何都只弹到百度,能读取到值 但是if 不生效,哪里写错了吗 var aaa = this.options.form.getWidgetByName("q_comboBox0").getValue(); if (aaa=1) {window.open('https://www.baidu.com','_blank');} else if (aaa=2) {window.open('https://www.csdn.net','_blank');} |