textarea提交的时候怎么去除首尾的空格

来源:互联网 发布:mac不休眠 编辑:程序博客网 时间:2024/04/30 05:20


不要这样:

<textarea rows="3" cols="20">内容。</textarea>


要这样:

<textarea rows="3" cols="20">内容</textarea>


固定textareada大小

    <style type="text/css">        textarea {            resize: none;            width: 500px;            height: 150px;        }    </style>



原创粉丝点击