我使用了html textarea
<textarea runat="server" cols="1" rows="1" aria-expanded="false" aria-haspopup="true" ID="txt_monthlyemployee" EnableViewState="false" class="comment-tabs2" ></textarea>
我希望当我写完 textarea 并点击输入 textarea 后不会转到新行。
答案 0 :(得分:1)
textarea
基本上代表multi-line
纯文本编辑控件。
如果您希望它在单行中,那么simple input text
就足够了。
<input type="text" />