当前位置: 编程技术>jquery
在光标所在位置插入内容的js代码
来源: 互联网 发布时间:2014-09-03
本文导语: 以下代码,实现在光标所在位置插入指定内容。 代码内容: /** *在输入域中插入字符串(光标所在位置) *@param $t document.getElementById('fieldId') *@param myValue 要插入的值 ** function addSplitToField($t,myValue){ if (document.selection) { $t.foc...
以下代码,实现在光标所在位置插入指定内容。
代码内容:
/** *在输入域中插入字符串(光标所在位置) *@param $t document.getElementById('fieldId') *@param myValue 要插入的值 ** function addSplitToField($t,myValue){ if (document.selection) { $t.focus(); sel = document.selection.createRange(); sel.text = myValue; $t.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{ $t.value += myValue; $t.focus(); } }