首页 > 代码库 > window.getSelection和document.selection getSelection
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。