2

我有一个包含大量输入/文本区域的表单,使用该表单的管理员可以在文本中添加动态值,例如:页面标题 =“Hi {name},欢迎来到 {shop_name}”。在表单的底部,我列出了所有可用的动态值。

问:我想要做的是单击列表中的一个值,它会找出焦点上的先前输入并插入该值。

更简单地说,我如何让这个 jsFiddle为这个 input=text 工作,就像它为 textarea 做的一样?因此,如果我将光标放在输入字段中,它将在那里添加 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")
    );
});
4

1 回答 1

1

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

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

也许你也想看看这个线程

我的解决方案如下:

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
于 2013-07-12T11:04:09.857 回答