1 radio的使用
<td id="sex">性别:
<input type="radio" name="account.sex" value="1" />男
<input type="radio" name="account.sex" value="2" />女
</td>
$(function(){
$("#sex input[type=‘radio‘] ").click(function(){
alert($(this).val());
});
});
2 option
List<Integer> timeList = new ArrayList<Integer>();
<select id="year">
<s:iterator value="#request.timeList" id="list">
<option value="<s:property value="#list"/>"> <s:property value="#list"/></option>
</s:iterator>
</select> 年
<select>
$(‘#year‘).change(function(){
alert($(this).val());
});
时间: 2024-10-26 04:48:36