admin管理员组文章数量:1344948
I have this code in my view.
<%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">
<% } %>
In my Controller post Action result I am trying to get the value of this selection i am doing
collection["selection"]
I am not able to get the radio button Id which I checked. I am getting "on" but How do I need to know which radio button was selected in my view?
Thanks
I have this code in my view.
<%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">
<% } %>
In my Controller post Action result I am trying to get the value of this selection i am doing
collection["selection"]
I am not able to get the radio button Id which I checked. I am getting "on" but How do I need to know which radio button was selected in my view?
Thanks
Share Improve this question edited Mar 1, 2013 at 11:13 tereško 58.5k25 gold badges100 silver badges150 bronze badges asked May 25, 2011 at 19:56 user300485user300485 5255 gold badges12 silver badges26 bronze badges4 Answers
Reset to default 4This function will give you the selected radio button value and it's Id.
$("input:radio[name=selection]").click(function() {
var value = $(this).val();
alert(value);
var id= $(this).attr('id');
alert(id);
});
You can forget about the id an put value attribute in your radiobuttons, code will look like this.
<%using (Html.BeginForm("X", "Y", FormMethod.Post, new { @id = "XSS" }))
{ %>
<fieldset>
<legend>Select Selection Type</legend>
<label>Default Selections:</label>
<input type="radio" value="Default Selections" name="selection" />
<br />
<label>Existing Selections:</label>
<input type="radio" value="Existing Selections" name="selection" />
</fieldset>
<input type="submit" value="submit">
<% } %>
Give your radio buttons the 'value' attribute:
<input type="radio" id="Default Selections" name="selection" value="default" />
<input type="radio" id="Existing Selections" name="selection" value="existing" />
You can then distinguish between them with:
$("[name=selection]").each(function (i) {
$(this).click(function () {
var selection = $(this).val();
if (selection == 'default') {
// Do something
}
else {
// Do something else
}
});
});
$("input:radio[name=selection]").click(function (){
var somval = $(this).val();
alert(somval);
});
本文标签: How to get the radio button Id value using jquery or javascriptStack Overflow
版权声明:本文标题:How to get the radio button Id value using jquery or javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743765362a2535137.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论