您的位置:首页 > Web前端 > JavaScript

javascript获取选中文字-兼容各浏览器

2012-01-13 14:16 344 查看
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;
                }
            }
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: