选择占位符玉

时间:2014-03-28 02:30:12

标签: javascript select pug

这是我目前的代码。我需要添加一个不提供值的占位符。

     select.edit-profile-name(type="text", data-featurename="Options", class="attrs-feature-input")
        - each val in Mi.CMS.performer.attributes.options
          option
            =val

我认为这是我需要的代码,但是,虽然默认显示“Select One”,然后在我的选项上反复列出“select one”的选项。

          select.edit-profile-name(type="text", data-featurename="Options", class="attrs-feature-input")
            - each val in Mi.CMS.performer.attributes.options
              option(value='', selected='selected') Select One
              option
                =val

1 个答案:

答案 0 :(得分:0)

您只需要将默认选项拉出循环。

select
  option(value='', selected='selected') Select One
  each val in theList
      option= val