当前位置: 代码迷 >> Web前端 >> input设立size属性的大小无效处理
  详细解决方案

input设立size属性的大小无效处理

热度:654   发布时间:2012-11-22 00:16:41.0
input设置size属性的大小无效处理
解决办法是将size="35"改成style="width:300px"

修改前
<input type="text" name="jobname" id="jobname" dataType="Require" msg="未填写岗位" size="35" >&nbsp;<font color="red">*</font>


修改后
<input type="text" name="jobname" id="jobname" dataType="Require" msg="未填写岗位" style="width:300px" >&nbsp;<font color="red">*</font>
  相关解决方案