替换预定义文本容器中的部分字符串

时间:2016-02-23 15:19:44

标签: jquery string replace

我需要使用换行符SolidBrush myBrush = new SolidBrush (e.State.HasFlag(DrawItemState.Selected) ? SystemColors.ActiveCaptionText : SystemColors.ControlText) (不是写入换行符)替换给定文本中的硬编码<br>

示例:

\n

不起作用。我做错了什么?

演示:https://jsfiddle.net/SchweizerSchoggi/3bzrf3tj/

1 个答案:

答案 0 :(得分:4)

$("#MyText").text(testText);

将此更改为

$("#MyText").html(testText);