使用 javascript 获取选择的开始和结束
Get start and end of a selection using javascript
我有一个像这样的 html 字符串:
<div id="div">Hi how are<span>you?</span> Fine</div>
文字会出现"Hi how are you? Fine"
.
我想 select 使用鼠标获取字符串的一部分并获取开头和结尾
selection 从全文字符串看。
比如我select"you",我想得到start=11和end=14;
如果我select"are you?",我想获得start=7和end=15。
我写这个是为了获得 select离子:
function getSel() {
console.log(navigator.appCodeName);
if (window.getSelection) {
return window.getSelection();
} else if (document.getSelection) {
return document.getSelection();
} else if (document.selection) {
return document.selection.createRange().text;
}
}
还有这段获取开始和结束的代码,但是不起作用:
$("#div").on('mouseup', function(e){
var text=getSel();
if(text.anchorNode === text.focusNode){
var n = {
node: text.anchorNode.parentNode.id,
start: text.anchorOffset,
end: text.focusOffset
}
//selection from right to left
if(n.start>=n.end) {
var tmp;
tmp=n.start;
n.start=n.end;
n.end=tmp;
}
}
else console.log("error in selection");
});
您的选择器有误。 $('#div')
实际上选择具有 id='div'
.
的任何元素
我已经举例说明了它是如何完成的。如果我没有弄错你想要达到的目标。
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}
$(function(){
$("#div").on('mouseup', function(e){
var thisText = $(this).text();
var selectedText = getSelectionText();
var start = thisText.indexOf(selectedText);
var end = start + selectedText.length;
if (start >= 0 && end >= 0){
console.log("start: " + start);
console.log("end: " + end);
}
});
});
我有一个像这样的 html 字符串:
<div id="div">Hi how are<span>you?</span> Fine</div>
文字会出现"Hi how are you? Fine"
.
我想 select 使用鼠标获取字符串的一部分并获取开头和结尾 selection 从全文字符串看。
比如我select"you",我想得到start=11和end=14;
如果我select"are you?",我想获得start=7和end=15。
我写这个是为了获得 select离子:
function getSel() {
console.log(navigator.appCodeName);
if (window.getSelection) {
return window.getSelection();
} else if (document.getSelection) {
return document.getSelection();
} else if (document.selection) {
return document.selection.createRange().text;
}
}
还有这段获取开始和结束的代码,但是不起作用:
$("#div").on('mouseup', function(e){
var text=getSel();
if(text.anchorNode === text.focusNode){
var n = {
node: text.anchorNode.parentNode.id,
start: text.anchorOffset,
end: text.focusOffset
}
//selection from right to left
if(n.start>=n.end) {
var tmp;
tmp=n.start;
n.start=n.end;
n.end=tmp;
}
}
else console.log("error in selection");
});
您的选择器有误。 $('#div')
实际上选择具有 id='div'
.
我已经举例说明了它是如何完成的。如果我没有弄错你想要达到的目标。
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
}
return text;
}
$(function(){
$("#div").on('mouseup', function(e){
var thisText = $(this).text();
var selectedText = getSelectionText();
var start = thisText.indexOf(selectedText);
var end = start + selectedText.length;
if (start >= 0 && end >= 0){
console.log("start: " + start);
console.log("end: " + end);
}
});
});