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

首頁(yè) > 編程 > JavaScript > 正文

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

2019-11-20 22:38:01
字體:
供稿:網(wǎng)友
=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" onclick="insertText(document.getElementById('text'),' 新文字―YoyiorLee ')" value="插入文字"></input>

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

<input type="button" onclick="moveEnd(document.getElementById('text'))" value="移到末尾"></input>
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 武义县| 客服| 会昌县| 永城市| 七台河市| 巩留县| 苍山县| 法库县| 襄汾县| 册亨县| 商洛市| 榆树市| 双牌县| 年辖:市辖区| 双峰县| 即墨市| 吉林市| 永德县| 赤壁市| 偃师市| 曲阳县| 乌鲁木齐县| 铜鼓县| 台北市| 兴隆县| 沭阳县| 会东县| 宣化县| 鲜城| 涿州市| 庐江县| 垦利县| 长春市| 蒙城县| 曲周县| 延安市| 兴文县| 柳州市| 九龙城区| 北票市| 定陶县|