摘要:/* 单选题圈选与清空 */ f('A1').set('1') /* A1题选中code==1 */ f('A1').set(null) /* A1题清空选中的内容 */ /* 多选题圈选与清除已经选中的某些选项 */ f('A2')['2'].set('1') /* A2题选中code==2 */
阅读全文
12 2020 档案
摘要:/* 单选题圈选与清空 */ f('A1').set('1') /* A1题选中code==1 */ f('A1').set(null) /* A1题清空选中的内容 */ /* 多选题圈选与清除已经选中的某些选项 */ f('A2')['2'].set('1') /* A2题选中code==2 */
阅读全文
摘要:code的命名定义:Codes can only contain alphanumeric characters, with no white space. 定义中明确规定不允许空格,但是实际输入空格会有两种结果: 假设A1题的code==5有空格: 1. 会出现报错语句: Following va
阅读全文
摘要:GetLeastFilledQuotaCodes(quotaName, n, codesArr): quotaName:配额名称 n: 挑选n个配额最小的选项 codesArr: 选中选项的code数组 举例:从q37中挑选一个最小配额的选项放入q38。 f("q38").set(GetLeastF
阅读全文
|