文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Jquery在光标位置插入内容

Jquery在光标位置插入内容

时间:2011-01-14  来源:senly

(function($){
02 $.fn.extend({
03 insertAtCaret: function(myValue){
04 var $t=$(this)[0];
05 if (document.selection) {
06 this.focus();
07 sel = document.selection.createRange();
08 sel.text = myValue;
09 this.focus();
10 }
11 else
12 if ($t.selectionStart || $t.selectionStart == '0') {
13 var startPos = $t.selectionStart;
14 var endPos = $t.selectionEnd;
15 var scrollTop = $t.scrollTop;
16 $t.value = $t.value.substring(0, startPos) + myValue + $t.value.substring(endPos, $t.value.length);
17 this.focus();
18 $t.selectionStart = startPos + myValue.length;
19 $t.selectionEnd = startPos + myValue.length;
20 $t.scrollTop = scrollTop;
21 }
22 else {
23 this.value += myValue;
24 this.focus();
25 }
26 }
27 })
28 })(jQuery);

使用方法:

1 $(selector).insertAtCaret("value");

 

转自http://www.popo4j.com/article/Jquery-insert-content-at-the-cursor-position.html

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载