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示例,建议大家亲自动手测试一下,看看效果如何。