内容可编辑上标 & Chrome 中的下标

发布于 2024-10-20 13:52:35 字数 292 浏览 1 评论 0原文

以下 DHTML 格式设置命令在 IE、Firefox 和 Chrome 中的 contentEditable=true 的 div 上工作正常:

document.execCommand("superscript", false, null);
document.execCommand("subscript", false, null);

但是,再次调用该命令以删除格式设置在 Chrome 中不起作用。

我是否遗漏了什么或者这是 Chrome 中的错误?

The following DHTML formatting commands each work fine on a div with contentEditable=true in IE, Firefox and Chrome:

document.execCommand("superscript", false, null);
document.execCommand("subscript", false, null);

However, calling the command again to remove the formatting has no effect in Chrome.

Am I missing something or is this a bug in Chrome?

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

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

发布评论

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

评论(1

萌逼全场 2024-10-27 13:52:35

我有类似的问题。对我来说,问题是由于一些“规范化”CSS 改变了sup 和sub 标签的vertical-align:baseline。覆盖该 CSS 并将 sub 设置为 vertical-align: sub 并将 su 设置为 vertical-align: super 修复了它。

I had a similar problem. For me, the problem was due to some "normalization" CSS altering vertical-align: baseline for sup and sub tags. Overriding that CSS and setting sub to vertical-align: sub and sup to vertical-align: super fixed it.

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