我在我看來有這樣的代碼。如何使用jquery或javascript獲取單選按鈕Id值
<%using (Html.BeginForm("X", "Y", FormMethod.Post, new { @id = "XSS" }))
{ %>
<fieldset>
<legend>Select Selection Type</legend>
<label>Default Selections:</label>
<input type="radio" id="Default Selections" name="selection" />
<br />
<label>Existing Selections:</label>
<input type="radio" id="Existing Selections" name="selection" />
</fieldset>
<input type="submit" value="submit">
<% } %>
在我的控制器後行動的結果,我試圖讓這個選擇的價值我做
collection["selection"]
我不能讓我檢查單選按鈕標識。我正在「開」,但我如何需要知道在我的視圖中選擇了哪個單選按鈕?
感謝