jquery 设置radio值的代码一例

发布时间:2020-05-07编辑:脚本学堂
为大家介绍一个使用jquery设置radio值的例子,供大家学习参考。

1、表单内容

<input id="dtype" value="text" type="radio" checked="checked" name="dtype"/>
单行文本      
<input id="dtype" value="multitext" type="radio" name="dtype"/>
多行文本
<input id="dtype" value="datetime" type="radio" name="dtype"/>
时间类型
<input id="dtype" value="select" type="radio" name="dtype"/>
使用option下拉框
<input id="dtype" value="radio" type="radio" name="dtype"/>
使用radio选项卡
<input id="dtype" value="checkbox" type="radio" name="dtype"/>
Checkbox多选框

2、jquery代码

<script language="javascript" type="text/javascript">
/**
* 设置raido值
* www.jb200.com
*/
$.each($("input[name='dtype']"),function(){
 if($(this).val() =="text")
 {
    $(this).attr("checked","checked");
 }
});
</script>

以上就是今天Jquery 教程的内容,一个简单的jquery示例,建议大家亲自动手测试一下,看看效果如何。