gpt4 book ai didi

javascript - 文本区域中的新行在 IE 9 中不起作用

转载 作者:行者123 更新时间:2023-12-03 09:32:22 25 4
gpt4 key购买 nike

我正在尝试添加一些在文本区域控件中具有多行的动态文本,但它在 IE 中不起作用。

我遵循了本次讨论中提供的解决方案:

New line in text area

这是我的 JS 代码:

 var requestText = 'Hello, some text. 
' +
'Details are 
' +
'id: ' + user.Id+ '
' +
'count: ' + user.Count;

$('#RequestContentTxtBox').append(requestText);

HTML

<textarea class="form-control" id="RequestContentTxtBox" rows="6"></textarea> 

上面的代码在 Chrome 中有效,但在 IE 中无效。我尝试添加 </br>而不是&#13;&#10;但这在 Chrome 中不起作用。

是否有任何简单的方法可以在 IE 和 Chrome 中使用的文本区域中应用新行?

最佳答案

只需使用\n

'Hello, some text.\n'

你应该使用val()而不是append()

关于javascript - 文本区域中的新行在 IE 9 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31461459/

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