jQuery textarea - 插入模式光标位置

时间:2010-09-02 10:23:48

标签: jquery jquery-plugins jquery-selectors jquery-validate

在文本区域中如何使用jQuery在光标位置旁边插入模式name,之后光标应该在模式之后:这应该在按钮单击上发生

     <input type="button" value="insert pattern" >
     <textarea rows="10" id="comments">INSERT The condition</textarea>

1 个答案:

答案 0 :(得分:2)

请参阅this answer。这就是我获得insertAtCaret()方法的地方。我继续把它连接到你的按钮......不确定你的模式是什么意思“name。”那是一个SQL的东西吗?它是基于HTML中的某些先前输入字段吗?没有更多细节,很难提供更多帮助。

function insertAtCaret(areaId,text) {
    var txtarea = document.getElementById(areaId);
    var scrollPos = txtarea.scrollTop;
    var strPos = 0;
    var br = ((txtarea.selectionStart || txtarea.selectionStart == '0') ? 
        "ff" : (document.selection ? "ie" : false ) );
    if (br == "ie") { 
        txtarea.focus();
        var range = document.selection.createRange();
        range.moveStart ('character', -txtarea.value.length);
        strPos = range.text.length;
    }
    else if (br == "ff") strPos = txtarea.selectionStart;

    var front = (txtarea.value).substring(0,strPos);  
    var back = (txtarea.value).substring(strPos,txtarea.value.length); 
    txtarea.value=front+text+back;
    strPos = strPos + text.length;
    if (br == "ie") { 
        txtarea.focus();
        var range = document.selection.createRange();
        range.moveStart ('character', -txtarea.value.length);
        range.moveStart ('character', strPos);
        range.moveEnd ('character', 0);
        range.select();
    }
    else if (br == "ff") {
        txtarea.selectionStart = strPos;
        txtarea.selectionEnd = strPos;
        txtarea.focus();
    }
    txtarea.scrollTop = scrollPos;
}


$(document).ready(function(){
  $("#insertPattern").click(function(){
    insertAtCaret("comments","name");
  });
});​

然后,在您的HTML中:

  <input id="insertPattern" type="button" value="insert pattern" />
  <textarea rows="10" id="comments">INSERT The condition</textarea>

希望这有帮助!