Home  >  Article  >  Web Front-end  >  javascript实现 在光标处插入指定内容_javascript技巧

javascript实现 在光标处插入指定内容_javascript技巧

WBOY
WBOYOriginal
2016-05-16 19:13:041049browse


<script> <BR><!-- <BR> var _insertText = function(A){ <BR> var B = document.getElementById('test'); <BR> B.focus(); <BR> var C = document.selection.createRange(); <BR> if(C){ <BR> if(C.text.length > 0) C.text += A; <BR> else C.text= A; <br><br> C.select(); <BR> } <BR> } <BR>//--> <BR></script>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn