本文介绍了如何在输入文本框中使用textmode multiline。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 如果我想在输入框中显示的文本长度更多,那么它会在输入框的下一行中断并显示..我该怎么做。解决方案 < textarea style = width:291px;高度:41px; id = TextBox1 cols = 2 行 = 2 名称 = txtInput > < / textarea > if the text length that i want to show in input box is more then it break and show in next line in inputbox.. how can i do it. 解决方案 <textarea style="width: 291px; height: 41px;" id="TextBox1" cols="2" rows="2" name="txtInput"></textarea> 这篇关于如何在输入文本框中使用textmode multiline。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-21 08:52