标签:
function selectText(){ if(document.selection){ //ie return document.selection.createRange().text; } else{ //标准 return window.getSelection().toString(); } }
js选中文字兼容性解决
原文地址:http://www.cnblogs.com/nifengs/p/5195143.html