很簡單的問題,但努力尋找答案。如何轉換將<input>更改爲@ Html.RadioButtonFor?
<input type="radio" id="radAnswer" name="answer" value="@answer" />
到
@Html.RadioButtonFor(/*some sort of code in here*/)
提前感謝!
很簡單的問題,但努力尋找答案。如何轉換將<input>更改爲@ Html.RadioButtonFor?
<input type="radio" id="radAnswer" name="answer" value="@answer" />
到
@Html.RadioButtonFor(/*some sort of code in here*/)
提前感謝!
我認爲這個question可以幫助你,它不是一樣的,但很好地理解了@Html.RadioButtonFor
語法的工作原理。
你可以使用RadioButtonFor
如下
@Html.RadioButtonFor(model => model.answer,"Answer",new { id = "radAnswer" })
像
@Html.RadioButtonFor(x => x.answer, your value, new { @id= "radAnswer" , @class="any"})
新的屬性來定義新的像檢查單選按鈕
new { Checked = "checked"}