如何使用 execCommand 更改字体大小

发布于 2024-10-24 03:38:06 字数 252 浏览 6 评论 0原文

我的 htm 文件中有字体样式 <代码>字体{ 字体大小:11px; } 当我的 htm 加载时,它将首先加载 现在我想使用以下命令更改字体大小 document.execCommand("fontsize", "", "5"); 执行后 现在字体标签由属性 size = "5" 组成 但我可以看到 font-size:11px 仍然在 IE Developer 工具栏的当前样式中。所以字体没有改变。

如何更改字体大小 请帮忙。

I am having a style for font in my htm file
FONT{
font-size:11px;
}

which will be loaded initially when my htm loads
Now I would like to change the font-size using the following command
document.execCommand("fontsize", "", "5");
After execution
Now the font tag consists of the attribute size = "5"
But I could see font-size:11px still in Current styles of IE Developer toolbar. So the font is not changed.

How to change the font size
Please help.

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

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

发布评论

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

评论(1

窝囊感情。 2024-10-31 03:38:06

这可能会晚了,但我建议尝试 document.execCommand('fontsize,false,'5')。 在某些浏览器中,不要将 false 传递给 defaultUI(第二个参数) 导致命令不运行。

当你运行它时它返回什么? execCommand 将根据成功或失败返回 true/false

This may be late, but I suggest trying document.execCommand('fontsize,false,'5'). In some browsers, not passing false to defaultUI (the second argument) results in the command not running.

What does it return when you run it? execCommand will return true/false based on success or failure.

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