jquery如何得到选中文字的内容和坐标
发布网友
发布时间:2022-04-24 22:59
我来回答
共2个回答
热心网友
时间:2022-04-25 00:29
1、得到选中文字内容如下
//选中文字
var funGetSelectTxt = function() {
var txt = '';
if(document.selection) {
txt = document.selection.createRange().text;
} else {
txt = document.getSelection();
}
return txt.toString();
};
2,获取对象元素的位置(offset()方法)
var offset = obj.offset();
获取对象元素的位置,分别是元素的top和left,调用方法是:offset.left和offset.top,可知当前对象的左部和顶部位置。
热心网友
时间:2022-04-25 01:47
1、得到选中文字内容如下
//选中文字
var funGetSelectTxt = function() {
var txt = '';
if(document.selection) {
txt = document.selection.createRange().text;
} else {
txt = document.getSelection();
}
return txt.toString();
};
2、坐标的话可以参看如下博客的内容
http://blog.csdn.net/cui_angel/article/details/7837749