2

我正在尝试在<body>具有contentEditable = true. 我正在从 chrome 插件运行内容脚本并像这样绑定操作:

getCaretPosition = function(element) {
    var range = parent.$("iframe.html").getCursorPosition();
    alert(range);
    return caretOffset;
}

getCursorPosition我在类似的堆栈溢出答案中找到了以下代码:

(function ($, undefined) {
$.fn.getCursorPosition = function() {
    var el = $(this).get(0);
    var pos = 0;
    if('selectionStart' in el) {
        pos = el.selectionStart;
    } else if('selection' in document) {
        el.focus();
        var Sel = document.selection.createRange();
        var SelLength = document.selection.createRange().text.length;
        Sel.moveStart('character', -el.value.length);
        pos = Sel.text.length - SelLength;
    }
    return pos;
}
})(jQuery);

但它总是返回 0 的位置。

4

0 回答 0