window.getSelection和document.selection getSelection

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.getSelection和document.selection getSelection相关的知识,希望对你有一定的参考价值。

window.getSelection和document.selection

 返回一个 Selection 对象,表示用户选择的文本。
  • selection 是一个 Selection 对象。 如果想要将 selection 转换为字符串,可通过连接一个空字符串("")或使用 String.toString() 方法。
IE9以下支持:document.selection   
 IE9、Firefox、Safari、Chrome和Opera支持:window.getSelection() 
 
alert 选中的内容
html:
<div>你选中我之后,弹出我!逗你玩</div>
js1:
function test(){
var txt = window.getSelection?window.getSelection():document.selection.createRange().text;
alert(txt)
}
document.onmouseup = test
 
移除选中内容:
html:
<div>你不能选中我,不信你试试</div>
js2:
function test(){
window.getSelection ? window.getSelection().removeAllRanges() : document.selection.empty();
}
document.onmouseup = test

 

以上是关于window.getSelection和document.selection getSelection的主要内容,如果未能解决你的问题,请参考以下文章

Window.getSelection

window.getSelection 返回 html [重复]

酶玩笑 window.getSelection() 不起作用

textarea的window.getSelection()在Firefox中不起作用?

webview- window.getselection()值为null

关于window.getSelection