s:textarea 标签不能改变大小的解决方案
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了s:textarea 标签不能改变大小的解决方案相关的知识,希望对你有一定的参考价值。
在s标签写的form中,无法利用rows="50" cols="75"来改变s:textarea大小,cssClass也不管用时;
直接用普通的textarea,设置CSS样式的方式来作处理
<style> .financeInfo_textbox{ height:120px; width:88%; margin-top:15px; resize:none;} </style>
<textarea class="financeInfo_textbox" name="financeInfo.benefitProduct" onblur="Check.checkLength(this,2048)" placeholder="请输入产品收益情况" >
</textarea>
以上是关于s:textarea 标签不能改变大小的解决方案的主要内容,如果未能解决你的问题,请参考以下文章