jsp之radio取值与赋值
转自:https://blog.csdn.net/dongfengkuayue/article/details/50352937
取radio的值:
js代码
$("input[name='radioName'][checked]").val();
给radio 赋值, 选中值为2的radio:
js代码:
$("input[name='radioName'][value=2]").attr("checked",true);
<script type="text/javascript"> $(document).ready(function(){ var type=<%=(String)request.getAttribute("specialType")%>; if(type==0){ $("input[name='specialType'][value=0]").attr("checked",true); }else{ $("input[name='specialType'][value=1]").attr("checked",true); } }); </script>
<table> <tr> <td class="td_label">Special Type</td> <td> <label for="whiteList">Whitelist</label> <input type="radio" id="specialType1" name="specialType" value="0"/> <label for="blackList">Blacklist</label> <input type="radio" id="specialType2" name="specialType" value="1" /> </td> </tr> </table>
另:https://blog.csdn.net/zbyluxzing/article/details/46965915
作者:习惯沉淀
如果文中有误或对本文有不同的见解,欢迎在评论区留言。
如果觉得文章对你有帮助,请点击文章右下角【推荐】一下。您的鼓励是博主的最大动力!
扫码关注一线码农的学习见闻与思考。
回复"大数据","微服务","架构师","面试总结",获取更多学习资源!