记录C标签的三目运算,

<td>性别:</td>
			<td class="ta_01" bgColor="#ffffff">
				<input type="radio" name="sex" id="sex男" ${user.sex=="男"?"checked":""} value="男"/>
				<label for="sex男">男</label>
				<input type="radio" name="sex" id="sex女" ${user.sex=="女"?"checked":""} value="女"/>
				<label for="sex女">女</label>
			</td>
			<td align="center" bgColor="#f5fafe" class="ta_01">学历:</td>
			<td class="ta_01" bgColor="#ffffff">
				<select name="education" id="education">
				    <option value="" >--选择学历--</option>
				    <option value="博士" ${user.education=="博士"?"selected":""}>博士</option>
				    <option value="硕士" ${user.education=="硕士"?"selected":""}>硕士</option>
				    <option value="研究生"  ${user.education=="研究生"?"selected":""}>研究生</option>
				    <option value="本科" ${user.education=="本科"?"selected":""}>本科</option>
				    <option value="专科" ${user.education=="专科"?"selected":""}>专科</option>
				    <option value="高中" ${user.education=="高中"?"selected":""}>高中</option>
				</select>
相关文章
相关标签/搜索