获取被选中的内容

function getSelText() {
       var txt = '';
        if (window.getSelection) {
                    txt = window.getSelection();
        }
        else if (document.getSelection) {
                    txt = document.getSelection();
        }
         else if (document.selection) {
                    txt = document.selection.createRange().text;
        }
                else return;
                return txt;
}

 

posted @ 2014-05-07 11:10  江—城—子  阅读(166)  评论(0编辑  收藏  举报