如何在 TinyMCE 中突出显示给定文本?
我有以下短语:
The birds fly in the sky near planes.
0123456789012345678901234567890123456
1 2 3
如果我知道短语的开始(14)和结束(23),如何使用 TinyMce 突出显示 in the sky
?
我想使用 setRng
方法,但我没有找到任何示例代码。
I have the following phrase:
The birds fly in the sky near planes.
0123456789012345678901234567890123456
1 2 3
How can I highlight in the sky
with TinyMce if I know the start(14) and end(23) of the phrase ?
I would like to use the setRng
method but I didn't find any sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我想出的解决方案:
其中:
getElementById
或任何其他简写属性(parent
、nextSibling
等)我更喜欢这个解决方案因为我只使用tinyMCE API。我不依赖于可以在浏览器之间改变(行为、错误......)的对象和方法。
Here is the solution I came up with :
Where :
getElementById
or any other short-hand properties (parent
,nextSibling
etc)I prefer this solution because I only use the tinyMCE API. I don't rely on objects and methods that can change (in behavior, in bugs ...) from browser to browser.
尝试:
Try: