使用 在 fckeditor 中
我想以粗体打印一些默认字符串值,但我正在使用标签,但它没有呈现为粗体,而是显示它正在打印相同的内容等
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是
标签正在被转义/编码并呈现为
<b>
您可能想尝试使用
请参阅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
See the js docmentation for fckeditor.
尝试
而不是
,因为
标签在大多数文档类型中已被贬值。它可能不能直接解决您的问题,但至少是一个好的实践。
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.