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")); });