Das Beispiel in diesem Artikel beschreibt, wie jQuery das Einfügen von Zeichen oder Ausdrücken an bestimmten Positionen im Textbereich implementiert. Teilen Sie es als Referenz mit allen. Die spezifische Implementierungsmethode lautet wie folgt:
1. Funktionsdefinition
(function($){
$.fn.extend({
insertAtCaret: function(myValue){
var $t=$(this)[0];
if (document.selection) {
This.focus();
sel = document.selection.createRange();
sel.text = myValue;
This.focus();
}
sonst
If ($t.selectionStart || $t.selectionStart == '0') {
var startPos = $t.selectionStart;
var endPos = $t.selectionEnd;
var scrollTop = $t.scrollTop;
$t.value = $t.value.substring(0, startPos) myValue $t.value.substring(endPos, $t.value.length);
This.focus();
$t.selectionStart = startPos myValue.length;
$t.selectionEnd = startPos myValue.length;
$t.scrollTop = scrollTop;
}
sonst {
This.value = myValue;
This.focus();
}
}
})
})(jQuery);
2. Rufen Sie die Methode
auf
$("#textareaId").insertAtCaret("New Emoticon") ;
Ich hoffe, dass dieser Artikel für alle bei der jQuery-Programmierung hilfreich sein wird.