12.js

来自「进行ajax开发sdsd s d sd s」· JavaScript 代码 · 共 17 行

JS
17
字号
function getSelectedText() {    if (window.getSelection) {        // This technique is the most likely to be standardized.        // getSelection() returns a Selection object, which we do not document.        return window.getSelection().toString();    }    else if (document.getSelection) {        // This is an older, simpler technique that returns a string        return document.getSelection();    }    else if (document.selection) {        // This is the IE-specific technique.        // We do not document the IE selection property or TextRange objects.        return document.selection.createRange().text;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?