Maison  >  Article  >  interface Web  >  javascript获取选中的文本的方法代码_javascript技巧

javascript获取选中的文本的方法代码_javascript技巧

WBOY
WBOYoriginal
2016-05-16 17:18:10698parcourir

复制代码 代码如下:




new document



  
  



<script> <BR> String.prototype.trim = function() { <BR> return this.replace(/^\s+|\s+$/g, ""); <BR> } <BR> /* 方法一 FF下有点问题 */<BR> function getSelectText() { <BR> try{<BR> // IE: document.selection.createRange() W3C:window.getSelection()<BR> var selectText = (document.selection && document.selection.createRange )? document.selection.createRange().text : window.getSelection().toString();<BR> if(selectText != null && selectText.trim() != ""){<BR> return selectText;<BR> }<BR> }catch(err){}<BR> } <BR> /* 方法二 */<BR> function getSelectText2(id) {<BR> var t = document.getElementById(id);<BR> if(window.getSelection) {<BR> if(t.selectionStart != undefined && t.selectionEnd != undefined) {<BR> return t.value.substring(t.selectionStart, t.selectionEnd);<BR> } else {<BR> return "";<BR> }<BR> } else {<BR> return document.selection.createRange().text;<BR> }<BR> }<BR> document.getElementById('btn').onclick = function() {<BR> document.getElementById('show').innerHTML = getSelectText2('content');<BR> }<BR></script>
  
  
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn