jquery radio 操作代码

jquery radio 操作代码,需要的朋友可以参考下。

//设置第二个为选中状态

//if(<%=rows["sex"]%>=="2"){$(':radio[name=sex]').eq(1).attr('checked',true);}

//设计value=2的为选中状态
//if(<%=rows["sex"].ToString() %>=='2'){$("input[name='sex']").attr("checked",'2');}


if(<%=rows["sex"]%>=="2"){$("input[name=sex][value=2]").attr("checked",true);}

今天办了件NB的事上面这三个条件都测试了不起作用,原因是不是本地数据库一直在远程数据库操作

JQuery 得到radio

复制代码 代码如下:


<div>
<input type="radio" value="1" checked />1
<input type="radio" value="2" />2
<input type="radio" value="3" />3
<input type="radio" value="4" />4
<input type="radio" value="5" />5
<input type="button" value="button" />
<input type="button" value="button" />
</div>

<script language="javascript" type="text/javascript">
// <![CDATA[
function Button1_onclick() {
$("input").each(function () {
if (this.type == 'radio') {
alert($(this).val());
}
});
}
function Button2_onclick() {
//alert($("input[@type=radio]:checked").val());
//alert($("input[name='rad']:checked").val());
alert($("input[@type=radio]").val());
}
// ]]>
</script>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdfdjw.html