<div class="col-sm-12" style="margin-left:0px; margin-top: 20px">
<label style=" width: 99%; font-weight:normal; margin-left: -15px" class="surveyquestion">2.b. Identify other lending programs managed by applicant.</label>
<textarea style="width:90%; " id="otherLendingPrograms" maxlength="8000" data-bind="css: otherLendingProgramsCSS , attr: { title: otherLendingProgramsToolTip }, event: {focusout: checkLostFocus.bind($root, $data, 'otherLendingPrograms')}, value: otherLendingPrograms"></textarea>
</div>
&#13;
我希望文本在达到特定的位数时转移到第一行下面的下一行。我不希望教学一直到文本区域框的末尾。例如:text为123456789
我希望第一行12345
,6789
转到下一行。只是一个例子。
答案 0 :(得分:1)
相对于简单的事情而言太复杂了, 您可以使用CSS来调整行的长度。
textarea{
max-width:200px;
word-wrap:break-word;
}
当宽度为200像素时,这会产生单词扭曲和线条变化,你也可以调整最大宽度。
有精明的例子here。