struts 中如何用变量控制标签的只读属性?再线等
我这样写了,不行
<%
String strReadOnly = "true ";
%>
<html:text name= "arrList " property= "overst_timeh " size= "5 " readonly= " <%=strReadOnly%> " />
------解决方案--------------------你那个true成字符串了 不是boolean型的啊
------解决方案--------------------把
<%
String strReadOnly = "true ";
%>
改称
<%
boolean strReadOnly = true;
%>
就可以了。