execCommand 不适用于 xml 文件
我正在使用 execCommand 命令来“Hilite”在使用 gecko 引擎/gtkmozembed 呈现的页面上选择的文本。
if ( !document.execCommand("HiliteColor", false, colour) ) {
document.execCommand("BackColor", false, colour);
}
这对于 HTML 页面来说工作得很好。但我有一些 XML 页面( xml 格式的书籍)。 execCommand 不适用于这些 XML 页面。它会发出警告,例如
TypeError: document.execCommand is not a function
如何使 execCommand 在 XML 上工作?谢谢。
I am using execCommand command to 'Hilite' selected text on the page which is rendered with gecko engine/gtkmozembed.
if ( !document.execCommand("HiliteColor", false, colour) ) {
document.execCommand("BackColor", false, colour);
}
This is working fine with HTML pages. But i have some XML pages( books in xml format). execCommand is not working for those XML pages. It gives warning like
TypeError: document.execCommand is not a function
How can i make execCommand works on XML? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,XML 没有可视化表示层。它只是一个数据容器。尝试使用 XSLT 将 XML 文档转换为 HTML 文档。那么任何 JavaScript 都可以完美运行。
XML has no visual representation layer by default. It is only a data container. Try transforming the XML documents into HTML documents using XSLT. Then any JavaScript will work perfectly.