使用 在 fckeditor 中

发布于 2024-09-09 21:42:20 字数 557 浏览 3 评论 0原文

我想以粗体打印一些默认字符串值,但我正在使用标签,但它没有呈现为粗体,而是显示它正在打印相同的内容等

var defaultFCKValue = '----Original Message---- \n';
            defaultFCKValue += '<b>From:</b> ' + from + '\n';
            defaultFCKValue += '<b>Sent:</b> ' + date + '\n';
            defaultFCKValue += $('div.popupContent div div.message').html();
            var oEditor = FCKeditorAPI.GetInstance("<%=FCKeditorSelfDocument.ClientID %>");
            var oDOM = oEditor.EditorDocument;
            oDOM.body.innerText = defaultFCKValue;

i want to print some default string value in bold but i am using tag but it is not rendered as bold rather it is showing it is printing the same etc

var defaultFCKValue = '----Original Message---- \n';
            defaultFCKValue += '<b>From:</b> ' + from + '\n';
            defaultFCKValue += '<b>Sent:</b> ' + date + '\n';
            defaultFCKValue += $('div.popupContent div div.message').html();
            var oEditor = FCKeditorAPI.GetInstance("<%=FCKeditorSelfDocument.ClientID %>");
            var oDOM = oEditor.EditorDocument;
            oDOM.body.innerText = defaultFCKValue;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱冒险 2024-09-16 21:42:20

问题是 标签正在被转义/编码并呈现为 <b>

您可能想尝试使用

oEditor.setHtml(defaultFCKValue)

请参阅fckeditor 的 js 文档

The problem is that the <b> tags are being escaped/encoded and are being rendered as <b>

You might want to try using

oEditor.setHtml(defaultFCKValue)

See the js docmentation for fckeditor.

软的没边 2024-09-16 21:42:20

尝试 而不是 ,因为 标签在大多数文档类型中已被贬值。它可能不能直接解决您的问题,但至少是一个好的实践。

Try <strong> rather than <b>, as <b> tags have been depreciated in most doctypes. It may not directly solve your problem, but it is at least good practice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文