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 badges
Add a ment  | 

4 Answers 4

Reset to default 4

This 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