Select list (dropdown) in HAML

点点圈 提交于 2019-12-12 16:16:53

问题


I'm having trouble producing a traditional HTML dropdown box in HAML. I'm using the Yii HAML extension, so I'm sure if its a quirk with that specifically.

This is the HAML I'm using ...

%select
   %option one
   %option two
   %option three

This is the HTML output I'm trying to get ...

<select>
   <option>one</option>
   <option>two</option>
   <option>three</option>
</select>

回答1:


Your indent is off by one space. It's two spaces, not three.

%select
  %option one
  %option two
  %option three


来源:https://stackoverflow.com/questions/7746870/select-list-dropdown-in-haml

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!