色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

JQuery在光標(biāo)位置插入內(nèi)容的實(shí)現(xiàn)代碼

復(fù)制代碼 代碼如下:
(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);

使用方法:
復(fù)制代碼 代碼如下: $(selector).insertAtCaret("value");

JavaScript技術(shù)JQuery在光標(biāo)位置插入內(nèi)容的實(shí)現(xiàn)代碼,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 镇坪县| 日照市| 当阳市| 甘孜| 台湾省| 石楼县| 北京市| 吴江市| 上思县| 嵊泗县| 烟台市| 梁平县| 鹤山市| 兴山县| 银川市| 盐山县| 古浪县| 五家渠市| 富裕县| 上高县| 弥勒县| 汉沽区| 新兴县| 永寿县| 辽阳市| 尼玛县| 五原县| 德兴市| 罗甸县| 前郭尔| 大安市| 禹城市| 阳山县| 五华县| 易门县| 乐安县| 西华县| 屯留县| 满城县| 鹤庆县| 黑龙江省|