码迷,mamicode.com
首页 > Web开发 > 详细

Jquery在textarea的文字焦点中插入文字

时间:2017-05-11 19:38:26      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:osi   color   str   length   txt   nbsp   end   .text   logs   



遇到一个功能,要求点击标题,插入文字到已有的文本中。
主要代码如下:

var txtArea = $("#textArea")[0];
            var content = txtArea.value;
            var start = txtArea.selectionStart; //初始位置
            txtArea.value = content.substring(0, txtArea.selectionStart) + $(this).text() + content.substring(txtArea.selectionEnd, content.length);
            var position = start + $(this).text().length;
            $("#textArea").focus();
            txtArea.setSelectionRange(position, position);

 

Jquery在textarea的文字焦点中插入文字

标签:osi   color   str   length   txt   nbsp   end   .text   logs   

原文地址:http://www.cnblogs.com/codeaaa/p/6842148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!