gpt4 book ai didi

javascript - 跳转到文本区域的下一行,因为我不希望文本到达文本区域的末尾

转载 作者:行者123 更新时间:2023-12-03 02:44:52 25 4
gpt4 key购买 nike

<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>

我希望当文本达到特定数量的数字时,将其移动到第一行下方的下一行。我不希望教学一直到文本区域框的末尾。例如:文本为 123456789

我希望第一行为 12345,而下一行为 6789。只是一个例子。

最佳答案

宁可把简单的事情搞得太复杂,您可以使用 CSS 来调整线条的长度。

textarea{
max-width:200px;
word-wrap:break-word;
}

当宽度为 200 px 时,这会产生文字扭曲和线条变化,您也可以调整最大宽度。

有一个精明的例子here

关于javascript - 跳转到文本区域的下一行,因为我不希望文本到达文本区域的末尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48140451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com