gpt4 book ai didi

段落文本中的 Knockout.js 回车

转载 作者:行者123 更新时间:2023-12-03 09:36:24 29 4
gpt4 key购买 nike

使用 knockout.js,如何在绑定(bind)到段落文本属性的文本中包含回车 <p>元素。

在我的 ViewModel 中,我生成了一个绑定(bind)到 <p> 的文本字符串。在 View 中。我想在浏览器用换行符显示的字符串中包含回车符。

其中<br />Environment.NewLine在字符串中似乎不起作用。

最佳答案

您需要在元素中设置一个 css 属性。 white-space: pre-wrap

<p style="white-space: pre-wrap">First name: <strong data-bind="text: firstName">todo</strong></p>
<p>Last name: <strong>todo</strong></p>

function AppViewModel() {
this.firstName = "Bert" + " \n " + "Test";
this.lastName = "Bertington";
}

// Activates knockout.js
ko.applyBindings(new AppViewModel());

然后代码工作。与 \n

关于段落文本中的 Knockout.js 回车,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17422895/

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