function getSelectedText() { var txt = ""; if (window.getSelection) { txt = window.getSelection(); } else if (window.document.getSelection) { txt = window.document.getSelection(); } else if (window.document.selection) { txt = window.document.selection.createRange().text; } return txt; }
自己测过,主流浏览器都是支持的,可以兼容到ie5!!!