gpt4 book ai didi

javascript - jquery .html 显示 html 标签,而不是在文本上应用 html 标签

转载 作者:行者123 更新时间:2023-11-28 01:48:47 25 4
gpt4 key购买 nike

我的代码是

 printMsg : function(data) {
$("#message").html(data.bodyText);
...
}

这里

data.bodyText   =    <strong> Test This Text  ;/strong>

我应该将数据显示为测试此文本并且我这样做了

 $("#message").html(data.bodyText);

这可以正确显示 jquery 以前版本 (1.9) 的文本

现在使用 jquery 1.10 可以显示

<strong> Test This Text  </Strong>

您能告诉我原因吗?如果有的话有什么解决办法吗?

最佳答案

您是否尝试做类似 this? 的事情在 jquery 1.10.1 中似乎工作正常

HTML

<span id='message'></span>

JS

var data = {};
data.bodyText = "<strong>Test This Text;</strong>";
$("#message").html(data.bodyText);

关于javascript - jquery .html 显示 html 标签,而不是在文本上应用 html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19975331/

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