JS获取html页面上选中内容

新的html浏览器都支持获取页面中选中文本的操作了。

看看js中提供的操作:
在chrome内:

>document.getSelection();
Selection {anchorNode: text, anchorOffset: 4, focusNode: text, focusOffset: 4, isCollapsed: true…}
>>anchorNode:text
>>anchorOffset:0
>>baseNode:text
>>baseOffset:0
>>extentNode:text
>>extentOffset:9
>>focusNode:text
>>focusOffset:9
>>isCollapsed:false
>>rangeCount:1
>>type:"Range"
>>__proto__:Selection

在Microsoft的Edge浏览器内,也可以使用document.getSelection(),而旧的IE10可以使用
document.selection

使用document.getSelection().toString();就可以输出获取到的文本了。

你可能感兴趣的:(JavaScript,html,选中文本)