我想填写一个名为“mondayHours”的下拉列表,其中包含一个for循环,数字为1-12,任何人都可以帮助我吗?我在网上看了一些文章,但找不到合适的解决方案。
我已经开始了......
for(i=0; i <= 10; i++){
this.getField("mondayHours").setItems([i.toString()]);
}
但没有任何反应。
当我使用它时,它的创建下拉项目为0.25 - ...
this.getField("mondayHours").setItems(["0.25","0.5","1","1.25"....]);
答案 0 :(得分:0)
使用类似我以下的内容......
var hours = [] // an empty array
for(i=1; i <= 12; i++){
hours.push(i); // add each number to the end of the array
}
this.getField("mondayHours").setItems(hours); // set the items list to the array