jquery radio select处理 设置radio
转载
1 jquery中,radio的选中与否是这么设置的。
$("#rdo1").attr("checked","checked");
$("#rdo1").removeAttr("checked");
2 第一个选中:$("input[name=jizai]:eq(0)").attr("checked",'checked');
3 判断是否被选:
alert($("input[name=bankId]:checked").size() > 0);
4 遍历radio:
$("input[name=bankId]:checked").each(function(){
$(this).removeAttr("checked");
});
5 jquery radio第几个选中:
$("input[name=rating_2]").get(5).checked = true;
6 获取以选中radio的值
var item = $('input[name=jizai]:checked').val();
select 操作:
遍历option取值:
$("#select_left").children("option").each(function() { console.log(this.value); });
遍历选中:
$("#select_left").children("option").each(function() { this.selected = true; jQuery(this).attr("selected", false).appendTo($("#select_right")); });
本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。