이 기사의 예에서는 jQuery가 텍스트 영역의 지정된 위치에 문자 또는 표현식 삽입을 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
1. 함수 정의
(function($){
$.fn.extend({
insertAtCaret: 함수(myValue){
var $t=$(this)[0];
if (document.selection) {
This.focus();
sel = document.selection.createRange();
sel.text = myValue;
This.focus();
}
그 외
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;
}
그 외 {
This.value = myValue;
This.focus();
}
}
})
})(jQuery);
2. 통화방법
$("#textareaId").insertAtCaret("New Emoticon") ;
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.