获取选中的文字 /*获取选中的文字*/var _getSelectedText = function() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.getSelection) { return document.getSelection(); } else if (document.s
/*获取选中的文字*/ var _getSelectedText = function() { if (window.getSelection) { return window.getSelection().toString(); } else if (document.getSelection) { return document.getSelection(); } else if (document.selection) { return document.selection.createRange().text; }else{ return ""; } }