点击后jquery获取光标位置

时间:2013-07-12 11:00:29

标签: javascript jquery

我有一个包含大量输入/ textareas的表单,使用表单的管理员可以在文本中添加动态值,例如:page title =“Hi {name},welcome to {shop_name}”。在表单的底部,我有一个所有可用动态值的列表。

问:我要做的是点击列表中的一个值,找出焦点上的上一个输入并插入值。

更简单的说明如何使this jsFiddle为此input = text工作与texttarea相同?因此,如果我将光标放在输入字段中,则会在那里添加foo值而不是textarea。

HTML

<form action="" method="post">     
    <label for="name">Name:</label> 
    <input name="name" type="text" />

    <label for="message">Message:</label> 
   <textarea name="message">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </textarea>

    <input value="Submit" type="submit" />          
</form>

<h3>Insert short code</h3>
<ul class="inserts">
    <li><a href="#" data-foo="{foo_1}">Foo 1</a></li>
    <li><a href="#" data-foo="{foo_2}">Foo 2</a></li>
    <li><a href="#" data-foo="{foo_3}">Foo 3</a></li>
    <li><a href="#" data-foo="{foo_4}">Foo 4</a></li>
    <li><a href="#" data-foo="{foo_5}">Foo 5</a></li>
</ul>

JS

jQuery.fn.extend({
    insertAtCaret: function (myValue) {
        return this.each(function (i) {
            if (document.selection) {
                //For browsers like Internet Explorer
                this.focus();
                var sel = document.selection.createRange();
                sel.text = myValue;
                this.focus();
            } else if (this.selectionStart || this.selectionStart == '0') {
                //For browsers like Firefox and Webkit based
                var startPos = this.selectionStart;
                var endPos = this.selectionEnd;
                var scrollTop = this.scrollTop;
                this.value = this.value.substring(0, startPos) + myValue + this.value.substring(endPos, this.value.length);
                this.focus();
                this.selectionStart = startPos + myValue.length;
                this.selectionEnd = startPos + myValue.length;
                this.scrollTop = scrollTop;
            } else {
                this.value += myValue;
                this.focus();
            }
        });
    }
});

$(".inserts a").click(function (e) {
    e.preventDefault();
    $('textarea').insertAtCaret(
        $(this).data("foo")
    );
});

1 个答案:

答案 0 :(得分:1)

一种简单的方法是将光标的最后位置存储在变量的输入字段中。单击一个按钮后,您可以轻松地将值插入所需位置。足够的思考? ;)

编辑: 要在位置x上插入字符串,您可以使用此jQuery caret plugin或在位置x上拆分原始输入内容,并在其间添加新内容。

也许您还想看看this thread

我的解决方案如下:

var pos = 0;

$('yourField').on('click keypress', function () {
    pos = $(this).caret().start
});

// inside your click function you can use the following
// $.fn.caretTo( index , [ offset ] )
// to add input to a specific position