Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用execCommand()我自己的拖放 javascript 函数制作一个所见即所得的编辑器。
execCommand()
如果适用,我希望能够找到所选文本的名称和大小。我该怎么做呢?
是否有与execCommand()此相关的特定功能?
alert(iFrame.document.queryCommandValue("FontSize"));
或者
alert(iFrame.document.queryCommandValue("ForeColor"));
您不能使用 execCommand 执行此操作,因为 execCommand 仅根据它是否成功返回 true 或 false。但是,这显然存在一些问题。我建议继续阅读
ContentEditable - 获取当前字体颜色/大小
更多信息