有没有人知道NHAML中所选单选按钮的正确语法?
这是我目前的NHAML代码:%input {type =“radio”,name =“Relocation”,value =“Yes”}
非常感谢帮助。
谢谢!
答案 0 :(得分:2)
最新版本的NHaml(2.0 Beta 2)改变了它处理属性的方式。不要使用逗号:
%input{type="radio" name="Relocation" value="Yes"}
答案 1 :(得分:1)
NHaml 2.0 Beta 1语法
%input{type="radio", name="Relocation", checked="true"}
答案 2 :(得分:1)
%input {type="radio" name="Relocation" checked="checked" value="TrueOrWhatever"}
或者只使用HtmlHelper