Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 struts 2 UI。我想将行中的字符数限制为 16,并且我必须将最大长度限制为 32。我尝试了行和列属性。但它不起作用。我还必须限制 textarea 的大小调整。任何可能的解决方案?
也许你有错字?属性是“rows”和“cols”,而不是“row”和“column”。
以下应该有效:
<s:textarea key="yourDataField" cols="32" rows="16" resizable="false"/>
这是一个很好的解释如何限制文本区域的大小调整
<s:textarea cssStyle="resize: none;"></s:textarea>
应该做的工作。