今天碰到了一个没有使用任何框架的表单,大概包含20多个属性,简单抽取几个:
<from id="auditFrom">
<label>房龄:</label> <input name="houseAge" type="number" >
<label>权属情况:</label> <input name="houseOwner" type="text" >
<label>是否抵贷不一:</label>
<select name="mortgageLoan">
<option>是</option>
<option>否</option>
</select>
<label>抵押情况:</label>
<select name="mortgage">
<option>一抵</option>
<option>二抵</option>
<option>多抵</option>
</select>
<label>有无备用房信息:</label>
<select name="spareHouse">
<option>有</option>
<option>无</option>
</select>
<label>放款金额:</label> <input name="fkAmount" type="text" >
<label>备注:</label> <input name="remark" type="textarea" >