我需要使用JavaScript计算所选/突出显示文本的width
和height
。
我使用Tim Down编写的以下代码作为起点,
function getSelectionCoords() {
var sel = document.selection, range;
var x = 0, y = 0;
if (sel) {
if (sel.type != "Control") {
range = sel.createRange();
range.collapse(true);
x = range.boundingLeft;
y = range.boundingTop;
}
} else if (window.getSelection) {
sel = window.getSelection();
if (sel.rangeCount) {
range = sel.getRangeAt(0).cloneRange();
if (range.getClientRects) {
range.collapse(true);
var rect = range.getClientRects()[0];
x = rect.left;
y = rect.top;
}
}
}
return { x: x, y: y };
}
left
& top
坐标正确显示。计算宽度和宽度高度,我需要right
& bottom
职位也是如此。
所以我添加了几行代码来查找bottom
& right
职位(此处提供的代码 - http://jsfiddle.net/pankajparashar/kv2Bp/)。但令我惊讶的是,代码显示left
& right
坐标始终相同,即使它们之间存在明显差异(仅在firefox中测试)。
top
& bottom
位置,因为它们工作正常,这将帮助我计算高度。但是为了计算宽度,我仍然需要正确的right
坐标。
任何人都可以用代码指出任何缺陷吗?或任何替代方法,使用它我可以计算宽度&所选文字的高度?
答案 0 :(得分:14)
这里有一些代码来获取选区边界矩形的尺寸。它与原始代码非常相似。
function getSelectionDimensions() {
var sel = document.selection, range;
var width = 0, height = 0;
if (sel) {
if (sel.type != "Control") {
range = sel.createRange();
width = range.boundingWidth;
height = range.boundingHeight;
}
} else if (window.getSelection) {
sel = window.getSelection();
if (sel.rangeCount) {
range = sel.getRangeAt(0).cloneRange();
if (range.getBoundingClientRect) {
var rect = range.getBoundingClientRect();
width = rect.right - rect.left;
height = rect.bottom - rect.top;
}
}
}
return { width: width , height: height };
}
答案 1 :(得分:2)
尝试使用 range.getBoundingClientRect 而不是 range.getClientRects 。