- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
找出在真实浏览器中选择的内容很简单:
var range = {
start: textbox.selectionStart,
end: textbox.selectionEnd
}
最佳答案
我将再次发布此功能,因为这个问题与另一个问题相关联。
以下将在所有浏览器中完成这项工作,并在不严重影响性能的情况下处理所有新行问题。我是在 some toing and froing 之后到达这里的现在我非常确信这是最好的此类功能。
更新
这个函数假设 textarea/input 有焦点,所以你可能需要调用 textarea 的 focus()
调用之前的方法。
function getInputSelection(el) {
var start = 0, end = 0, normalizedValue, range,
textInputRange, len, endRange;
if (typeof el.selectionStart == "number" && typeof el.selectionEnd == "number") {
start = el.selectionStart;
end = el.selectionEnd;
} else {
range = document.selection.createRange();
if (range && range.parentElement() == el) {
len = el.value.length;
normalizedValue = el.value.replace(/\r\n/g, "\n");
// Create a working TextRange that lives only in the input
textInputRange = el.createTextRange();
textInputRange.moveToBookmark(range.getBookmark());
// Check if the start and end of the selection are at the very end
// of the input, since moveStart/moveEnd doesn't return what we want
// in those cases
endRange = el.createTextRange();
endRange.collapse(false);
if (textInputRange.compareEndPoints("StartToEnd", endRange) > -1) {
start = end = len;
} else {
start = -textInputRange.moveStart("character", -len);
start += normalizedValue.slice(0, start).split("\n").length - 1;
if (textInputRange.compareEndPoints("EndToEnd", endRange) > -1) {
end = len;
} else {
end = -textInputRange.moveEnd("character", -len);
end += normalizedValue.slice(0, end).split("\n").length - 1;
}
}
}
}
return {
start: start,
end: end
};
}
var el = document.getElementById("your_input");
el.focus();
var sel = getInputSelection(el);
alert(sel.start + ", " + sel.end);
关于javascript - 是否有 Internet Explorer 认可的 selectionStart 和 selectionEnd 替代品?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/235411/
我在让下面的脚本与我的文本编辑器一起工作时遇到了一些困难。我不确定出了什么问题,但 selectionStart 和 selectionEnd 返回时未定义。 它应该在可编辑的 iframe 中获取突
我一直在努力使用 textarea 的 selectionStart 和 selectionEnd 属性,以使它们与 contenteditable div 元素一起使用。我在谷歌和SO上检查了很多相
Our application uses selectionStart on input fields to determine whether to automatically move the u
这可能非常简单。 我在 WinForm 上有一个文本框,Text = "ABCDEFGH"。我需要选择“BCD”并将 I-Beam(光标、插入符号、闪烁的“|”)留在“A”和“B”之间。设置 Sele
我遇到了以下代码片段,用于将输入插入到按下 ctrl + enter 的文本区域中的文本中。 $("#txtChatMessage").keydown(MessageTextOnKeyEnter);
Our application uses selectionStart on input fields to determine whether to automatically move the u
找出在真实浏览器中选择的内容很简单: var range = { start: textbox.selectionStart, end: textbox.selectionEnd } 但是 I
我正在尝试设置一个 contenteditable 跨度,以便在 onkeyup 事件中用格式化文本重新填充跨度。 但是,当我尝试这个时,光标消失了,我不能再打字了。这是因为格式化程序不会修改跨度中已
我有一个正在运行的单元测试,但现在我向我的 react-datepicker 添加了一个新包,名为 react-text-mask 并且我尝试模拟它,但当我运行 npm run test 时,它收到以
我是一名优秀的程序员,十分优秀!