选择长列表选项

时间:2014-10-24 00:40:48

标签: html

我有很长的项目列表,需要将其转换为选择选项。如果我一次写1个项目,我需要很长时间!

我想知道是否有一些方法可以将长列表快速转换为选择选项。请帮忙。

谢谢!

item1
item2
item3
....
itemxx

转换为:

<select name="options">
      <option value="1">item1</option>
      <option value="2">item2</option>
      <option value="3">item3</option>
      ...............................
      <option value="xx">itemxx</option>
</select>

1 个答案:

答案 0 :(得分:0)

查看Sublime Text的功能。
您可以使用它同时编辑多行。如果你花了很多时间完成这样的任务,你会喜欢它。

当然还有其他编辑器和其他方式(比如使用javascript编写脚本或生成元素),但我们可以猜测你可能拥有的技能,或者你必须经常使用的技能。