在contenteditable元素中自定义文本光标

时间:2011-12-06 22:50:26

标签: javascript html css contenteditable

是否可以在contenteditable="true" div代码中自定义闪烁的文字光标?

获取光标位置并在其上放置自定义光标或任何其他技巧?

2 个答案:

答案 0 :(得分:6)

不是没有绘制自己的光标(例如Google Docs所做的那样)。这样做是一项重要的事情,我不会推荐它。

答案 1 :(得分:2)

我同意Tim,我也不会推荐它。

  

(除非你有一个 Google的javascript忍者来帮助你:p)

但是,这是一个custom caret中使用<textarea>的示例页面。只是为了让您了解如何实现这一目标。

我相信这是custom caret的最基本的实现。

<!doctype html>
<html>
    <head>
        <script type="text/javascript">

            var cursor,
                $ = function (id){
                    return document.getElementById(id);
                },
                nl2br = function(txt){
                    return txt.replace(/\n/g, "<br />");
                },
                writeit = function(from, e){
                    e = e || window.event;
                    var w = $("writer");
                    var tw = from.value;
                    w.innerHTML = nl2br(tw);
                },
                moveIt = function (count, e){
                    e = e || window.event;
                    var keycode = e.keyCode || e.which;
                    if(keycode == 37 && parseInt(cursor.style.left) >= (0-((count-1)*10))){
                        cursor.style.left = parseInt(cursor.style.left) - 10 + "px";
                    } else if(keycode == 39 && (parseInt(cursor.style.left) + 10) <= 0){
                        cursor.style.left = parseInt(cursor.style.left) + 10 + "px";
                    }

                };

            window.onload = function (){
                cursor = $("cursor");               
                cursor.style.left = "0px";
            };

        </script>

        <style type="text/css">
            body{margin: 0px;padding: 0px;height: 99%;}
            textarea#setter{left: -1000px;position: absolute;}
            .cursor{font-size: 12px;background-color: red;color: red;position: relative;opacity: 0.5;}
            #terminal{margin: 8px;cursor: text;height: 500px;overflow: auto;}
            #writer{font-family: cursor, courier;font-weight: bold;}
            #getter{margin: 5px;}
        </style>
    </head>
    <body>
    <div id="terminal" onclick="$('setter').focus();">
        <textarea type="text" id="setter" onkeydown="writeit(this, event);moveIt(this.value.length, event)" onkeyup="writeit(this, event)" onkeypress="writeit(this, event);"></textarea>
        <div id="getter">
            <span id="writer"></span><b class="cursor" id="cursor">B</b>
        </div>
    </div>
    </body>
</html>

祝你在contenteditable中实现这一点好运。我当然希望这不是你的下一个问题(:p)!