我的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>
答案 0 :(得分:2)
试试这段代码
$(&#39;输入[姓名=&#34;服务&#34;]&#39;)。on(&#34;点击&#34;,功能(){
$(&#39;。显示&#39;)文本($(&#39;输入[名称=服务]:检查&#39;)VAL())。 });