在jsp中选择单选按钮后显示单选按钮的值

时间:2016-03-25 10:50:13

标签: jsp

我的JSP页面中有三个单选按钮,一旦选中,我想在单选按钮下面的div中显示所选按钮的值。找到下面的代码。根据选择,我想在显示中显示值。

<div>         
      <div class="service">    
        <input type="radio" name="Service" value="Service1 Selected"      Checked>  <b>Service-1</b></input>                
       <input type="radio" name="Service" value="Service2 Selected"><b>Service-2</b></input>
       <input type="radio" name="Service" value="Service3 Selected"><b>Service-3</b></input>
    </div>
    <div class="display"></div>

1 个答案:

答案 0 :(得分:2)

试试这段代码

$(&#39;输入[姓名=&#34;服务&#34;]&#39;)。on(&#34;点击&#34;,功能(){

$(&#39;。显示&#39;)文本($(&#39;输入[名称=服务]:检查&#39;)VAL())。 });