87,996
社区成员




<label >月计划</label>
<input type="radio" id="planType" name="planType" value="0" checked="true"/>
<label >周计划</label>
<input type="radio" id="planType1" name="planType" value="0"/>
<select id="cc" name="dept" style="width:200px;">
<option value="aitem1">aitem1</option>
<option value="bitem2" selected="selected">bitem2</option>
</select>
<script type="text/javascript">
$('[name="planType"]:radio').each(function() {
if (this.value == '0'){
this.checked = true;
}
});
</script>