execCommand 不适用于 xml 文件

发布于 2024-08-31 02:12:03 字数 437 浏览 3 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

凉世弥音 2024-09-07 02:12:03

默认情况下,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.

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