2014-03-28 114 views
0

這是我目前的代碼。我需要添加一個沒有賦值的佔位符。選擇佔位符玉

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

我認爲這是代碼,我需要,但,但同時這確實默認顯示「選擇一項」然後我得到我的選擇與「選擇一個」關於我的選擇頂部列出了一遍又一遍。

  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 

回答

0

你只需要拉你的默認選項跳出循環。

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