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

首頁(yè) > 語(yǔ)言 > JavaScript > 正文

JS在TextArea光標(biāo)位置插入文字并實(shí)現(xiàn)移動(dòng)光標(biāo)到文字末尾

2024-05-06 15:46:44
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
JS在TextArea光標(biāo)位置插入文字+移動(dòng)光標(biāo)到文字末尾,F(xiàn)irefox,Chrome,Safari以及Opera都有selectionStart和selectionEnd屬性,具體實(shí)現(xiàn)如下,感興趣的朋友可以參考下哈

=IE支持document.selection
=Firefox,Chrome,Safari以及Opera都有selectionStart和selectionEnd屬性

復(fù)制代碼 代碼如下:


function insertText(obj,str) {
if (document.selection) {
var sel = document.selection.createRange();
sel.text = str;
} else if (typeof obj.selectionStart === 'number' && typeof obj.selectionEnd === 'number') {
var startPos = obj.selectionStart,
endPos = obj.selectionEnd,
cursorPos = startPos,
tmpStr = obj.value;
obj.value = tmpStr.substring(0, startPos) + str + tmpStr.substring(endPos, tmpStr.length);
cursorPos += str.length;
obj.selectionStart = obj.selectionEnd = cursorPos;
} else {
obj.value += str;
}
}
function moveEnd(obj){
obj.focus();
var len = obj.value.length;
if (document.selection) {
var sel = obj.createTextRange();
sel.moveStart('character',len);
sel.collapse();
sel.select();
} else if (typeof obj.selectionStart == 'number' && typeof obj.selectionEnd == 'number') {
obj.selectionStart = obj.selectionEnd = len;
}
}


復(fù)制代碼 代碼如下:


<input type="button" value="插入文字"></input>


復(fù)制代碼 代碼如下:


<input type="button" value="移到末尾"></input>

發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 中宁县| 荣成市| 皋兰县| 昌吉市| 龙井市| 尉犁县| 凤阳县| 固始县| 合江县| 桃源县| 宜昌市| 韶山市| 浦北县| 集安市| 保康县| 二连浩特市| 邻水| 依兰县| 岳普湖县| 邵东县| 陇西县| 玉田县| 双峰县| 彭阳县| 梅河口市| 濮阳县| 东平县| 濮阳县| 石狮市| 普格县| 麦盖提县| 衢州市| 荃湾区| 高雄市| 威海市| 白朗县| 托克逊县| 宁国市| 西昌市| 格尔木市| 武夷山市|