我正在使用Rich Text Editor进行网络浏览,我希望在RTE / ContentEditable元素中使用当前字体颜色和大小的值。是否有一些预先选择的函数来获取这些值,例如execCommand,它直接与ContentEditable元素连接?或者我应该使用一些文本范围的jQuery库来获取这些属性吗?
答案 0 :(得分:30)
您可以使用document.queryCommandValue()
获取所有主流浏览器中当前选择的颜色和字体大小:
现场演示:http://jsfiddle.net/timdown/AJBsY/
代码:
var colour = document.queryCommandValue("ForeColor");
var fontSize = document.queryCommandValue("FontSize");
但是,浏览器的结果不一致,FontSize
命令仅适用于HTML <font>
元素中使用的字体大小1-7而不是CSS,因此您最好不要使用包含选择的元素和使用window.getComputedStyle()
/ currentStyle
检查其CSS属性:
现场演示:http://jsfiddle.net/timdown/K4n2j/
代码:
function getComputedStyleProperty(el, propName) {
if (window.getComputedStyle) {
return window.getComputedStyle(el, null)[propName];
} else if (el.currentStyle) {
return el.currentStyle[propName];
}
}
function reportColourAndFontSize() {
var containerEl, sel;
if (window.getSelection) {
sel = window.getSelection();
if (sel.rangeCount) {
containerEl = sel.getRangeAt(0).commonAncestorContainer;
// Make sure we have an element rather than a text node
if (containerEl.nodeType == 3) {
containerEl = containerEl.parentNode;
}
}
} else if ( (sel = document.selection) && sel.type != "Control") {
containerEl = sel.createRange().parentElement();
}
if (containerEl) {
var fontSize = getComputedStyleProperty(containerEl, "fontSize");
var colour = getComputedStyleProperty(containerEl, "color");
alert("Colour: " + colour + ", font size: " + fontSize);
}
}
这是一项改进,但仍有浏览器不一致,例如不同的单位或颜色格式。