js获取选中文本
function funGetSelectTxt() { var txt = ""; if(document.selection) { txt = document.selection.createRange().text; // IE } else { txt = document.getSelection(); //w3c } return txt.toString(); }; $('.content').mouseup(function(){ var text = funGetSelectTxt(); console.log(text) })