如何在键入时格式化contenteditable div?

时间:2010-10-29 07:02:46

标签: javascript html html5 contenteditable

我正在尝试编写一个函数,允许一个contenteditable div在用户输入div时进行一些自动格式化。到目前为止,我只能让它在IE中运行。有人可以帮帮我吗?

function formatOnKeyUp(){
    if (window.getSelection) {
        // ???????
    } else if (document.selection) {
        cursorPos=document.selection.createRange().duplicate();
        clickx = cursorPos.getBoundingClientRect().left; 
        clicky = cursorPos.getBoundingClientRect().top;
    }

    text = document.getElementById('div1').innerHTML;
    text = text.replace(/this/gm, "<i>this</i>");
    // .... some other formating here...
    document.getElementById('div1').innerHTML = text;

    if (window.getSelection) {
        // ????????
    } else if (document.selection) {
        cursorPos = document.body.createTextRange();
        cursorPos.moveToPoint(clickx, clicky);
        cursorPos.select();
    }
}

2 个答案:

答案 0 :(得分:4)

您可以使用我的selection save and restore module库中的Rangy,该库在选区边界使用不可见的标记元素。我还建议在一段时间的键盘不活动后进行替换,而不是每次keyup事件:

function formatText(el) {
    // Save the selection
    var savedSel = rangy.saveSelection();

    // Do your formatting here
    var text = el.innerHTML.replace(/this/gm, "<i>this</i>");
    el.innerHTML = text;

    // Restore the original selection 
    rangy.restoreSelection(savedSel);
}

var keyTimer = null, keyDelay = 500;

document.getElementById('div1').onkeyup = function() {
    if (keyTimer) {
        window.clearTimeout(keyTimer);
    }
    keyTimer = window.setTimeout(function() {
        keyTimer = null;
        formatText(document.getElementById('div1'));
    }, keyDelay);
};

答案 1 :(得分:0)

光标位置和文本范围看起来特别适用于Microsoft的JScript。

如果您将文本替换为某人类型,为什么还需要该代码?