标签:方法 request disable col token bsp span string text
方法常用有三种:
第一种,使用 onfocus="this.blur()"
1 <input name="deptno" type="text" class="dfinput" value="${requestScope.dept.deptno}" onfocus="this.blur()"/>
第二种,使用 disabled=“disabled”
1 <input name="deptno" type="text" class="dfinput" value="${requestScope.dept.deptno}" disabled="disabled"/>
第三种,使用 readonly=“true”
1 <input name="deptno" type="text" class="dfinput" value="${requestScope.dept.deptno}" readonly="true"/>
水平有限,如果还有其它的方式,请评论留言。
标签:方法 request disable col token bsp span string text
原文地址:https://www.cnblogs.com/eyjdbk/p/10961353.html