js selection对象使用方法

时间:2021-06-08 14:45:44

IE:document.selection   FireFox:window.getSelection()   document.selection只有IE支持,window.getSelection()也只有FireFox和   Safari支持,都不是标准语法。 
selection   对象  
   
  --------------------------------------------------------------------------------  
   
  代表了当前激活选中区,即高亮文本块,和/或文档中用户可执行某些操作的其它元素。  
  selection   对象的典型用途是作为用户的输入,以便识别正在对文档的哪一部分正在处理,或者作为某一操作的结果输出给用户。  
   
  用户和脚本都可以创建选中区。用户创建选中区的办法是拖曳文档的一部分。脚本创建选中区的办法是在文本区域或类似对象上调用   select   方法。要获取当前选中区,请对   document   对象应用   selection   关键字。要对选中区执行操作,请先用   createRange   方法从选中区创建一个文本区域对象。  
   
  一个文档同一时间只能有一个选中区。选中区的类型决定了其中为空或者包含文本和/或元素块。尽管空的选中区不包含任何内容,你仍然可以用它作为文档中的位置标志。

一个简单的例子

  1. <html><head><title>document.selection.createRange例子</title></head><body>
  2. <div>请选中这里的部分文字。</div><div><input type="button" value="加粗" onclick="javascript :Bold();" /></div>
  3. <script  language="javascript">
  4. function Bold(){
  5. var bo = document.selection.createRange();
  6. bo.execCommand("Bold");
  7. }</script>
  8. </body>
  9. </html>
    1. document.selection.createRange() 根据当前文字选择返回 TextRange 对象,或根据控件选择返回 ControlRange 对象。
    2. 配合 execCommand,在 HTML 编辑器中很有用,比如:文字加粗、斜体、复制、粘贴、创建超链接等。
    3. 实例一:
    4. <textarea cols=50 rows=15>
    5. 哈哈。我们都是新生来得。大家都来相互帮助呀。这样我们才能进步,我们才能赚大钱!</textarea>
    6. <input type=button value=选择字后点击我看看 onclick=alert(document.selection.createRange().text)>
    7. </form>
    8. 实例二:
    9. <body>
    10. <textarea name="textfield" cols="50" rows="6">就是现在文本域里有一段文字,当你选种其中几个字后点击一个按钮或者链接会弹出一个对话框,对话框的信息就是你选中的文字
    11. 哪位老大能解决的呀?请多多帮忙!!!谢谢
    12. </textarea>
    13. <input type="button" value="showSelection" onclick="alert(document.selection.createRange().text)">
    14. <input type="button" value="showclear" onclick="alert(document.selection.clear().text)">
    15. <input type="button" value="showtype" onclick="alert(document.selection.type)">
    16. <textarea name="textfield" cols="50" rows="6" onselect="alert(document.selection.createRange().text)">就是现在文本域里有一段文字,当你选种其中几个字后点击一个按钮或者链接会弹出一个对话框,对话框的信息就是你选中的文字
    17. 哪位老大能解决的呀?请多多帮忙!!!谢谢
    18. </textarea>
    19. </body>
    20. 实例三:选中Input中的文本
    21. <SCRIPT LANGUAGE="JavaScript">
    22. <!--
    23. function test2()
    24. {
    25. var t=document.getElementById("test")
    26. var o=t.createTextRange()
    27. alert(o.text)
    28. o.moveStart("character",2)
    29. alert(o.text)
    30. o.select()
    31. }
    32. //-->
    33. </SCRIPT>
    34. <input type='text' id='test' name='test'><input type=button onclick='test2()' value='test' name='test3'>
    35. 对textarea中的内容,进行选中后,加效果
    36. <script language="JavaScript">
    37. <!--
    38. function bold(){
    39. Qr=document.selection.createRange().text;
    40. if(!Qr || document.selection.createRange().parentElement().name!='description')
    41. {
    42. txt=prompt('Text to be made BOLD.','');
    43. if(txt!=null && txt!='') document.form1.description.value+=''+txt+'';
    44. }
    45. else{
    46. document.selection.createRange().text=''+document.selection.createRange().text+'';
    47. document.selection.empty();
    48. }
    49. }
    50. //-->
    51. </script>
    52. <input type="button" value="加粗" onclick="bold();" />
    53. <textarea name="description" style="width: 436px; height: 296px">选中我,点击加粗</textarea>
    54. 实例四:javascript捕获到选中的网页中的纯文本内容
    55. <html>
    56. <head>
    57. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    58. <title>鼠标取词</title>
    59. <script>
    60. function getSel()
    61. {
    62. var t=window.getSelection?window.getSelection():(document.getSelection?document.getSelection():(document.selection?document.selection.createRange().text:""))
    63. document.forms[0].selectedtext.value = t;
    64. }
    65. </script></head>
    66. <body onmouseup="getSel()">
    67. <form>
    68. <textarea name="selectedtext" rows="5" cols="50"></textarea>
    69. </form>
    70. 以上的代码可以捕获到选中的网页中的纯文本内容(不含HTML标签)
    71. 如果想获得包含html的内容,将document.selection.createRange().text改成document.selection.createRange().htmlText
    72. </body>
    73. </html>