本文實例講述了jQuery實作在textarea指定位置插入字元或表情的方法。分享給大家供大家參考。具體實作方法如下:
1. 函數定義
(function($){
$.fn.extend({
insertAtCaret: function(myValue){
var $t=$(this)[0];
if (document.selection) {
this.focus();
sel = document.selection.createRange();
sel.text = myValue;
this.focus();
}
else
if ($t.selectionStart || $t.selectionStart == '0') {
var startPos = $t.selectionStart;
var endPos = $t.selectionEnd;
var scrollTop = $t.scrollTop;
地.
this.focus();
$t.selectionStart = startPos myValue.length;
$t.selectionEnd = startPos myValue.length;
$t.scrollTop = scrollTop;
}
else {
this.value = myValue;
this.focus();
}
}
})
})(jQuery);
2. 呼叫方法
$("#textareaId").insertAtCaret("新表情");
希望本文所述對大家的jQuery程式設計有所幫助。