编辑下拉值无需每次创建新的下拉列表
在 applab 的 code.org javascript 编辑器中,可以通过以下方式创建下拉列表:
dropdown('id', 'option1', 'option2', ...);
我想知道是否有办法编辑列表,将其视为数组:
remove('id', 'position');
和:
insert('id', 'position', 'item1', 'item2'...);
任何我们将不胜感激,因为我在其他地方找不到任何方法来做到这一点。
Within the code.org javascript editor for the applab, there is the ability to create a dropdown by creating a dropdown by:
dropdown('id', 'option1', 'option2', ...);
I would like to know if there is a way to edit the list, treating it something like an array:
remove('id', 'position');
and:
insert('id', 'position', 'item1', 'item2'...);
any help would be appreciated, as I can't find any way to do this in other places.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 getProperty 将下拉列表转换为数组。然后,编辑该数组,并使用 setProperty 将其转换回下拉列表。这是代码;
You can convert dropdown to an array using getProperty. Then, edit the array, and convert it back to a dropdown with setProperty. Here's the code;