如何使用 execCommand 更改字体大小
我的 htm 文件中有字体样式 <代码>字体{ 字体大小:11px; } 当我的 htm 加载时,它将首先加载 现在我想使用以下命令更改字体大小 document.execCommand("fontsize", "", "5");
执行后 现在字体标签由属性 size = "5" 组成 但我可以看到 font-size:11px 仍然在 IE Developer 工具栏的当前样式中。所以字体没有改变。
如何更改字体大小 请帮忙。
I am having a style for font in my htm fileFONT{
font-size:11px;
}
which will be loaded initially when my htm loads
Now I would like to change the font-size using the following commanddocument.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能会晚了,但我建议尝试
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 passingfalse
to defaultUI (the second argument) results in the command not running.What does it return when you run it?
execCommand
will returntrue/false
based on success or failure.