国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > JS > 正文

JQuery在光標位置插入內容的實現代碼

2024-09-06 12:45:47
字體:
來源:轉載
供稿:網友
代碼如下:
(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;
$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;
}
else {
this.value += myValue;
this.focus();
}
}
})
})(jQuery);

使用方法:
代碼如下: $(selector).insertAtCaret("value");
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 桦南县| 武宣县| 海淀区| 靖江市| 合水县| 青阳县| 西丰县| 青阳县| 阜新市| 武功县| 九江县| 洛南县| 宜兰县| 遂宁市| 天柱县| 德格县| 天等县| 宁国市| 石楼县| 屯门区| 长沙县| 拜泉县| 二手房| 奇台县| 荔波县| 赞皇县| 巫溪县| 桐乡市| 江山市| 谷城县| 银川市| 津南区| 方正县| 莲花县| 永春县| 凌源市| 乐至县| 慈溪市| 吴川市| 兴仁县| 南汇区|