<td> <label>操作类型:</label> <select id="operation_type" class="combox" name="operationtype" > <option value="" selected:disabled style="diaplay:none">选择进卡操作</option> <option value="01">单张进卡</option> <option value="02">批量进卡</option> </select> </td>
1、selected:默认选择该选项;
2、disabled:该选项不能被鼠标选择;(注:选项没有被隐藏的时候)
3、style="display:none":隐藏该选项;(注:该选项不会出现在下拉列)
4、value="":该选项value为“”;(注:可做表单验证)