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)

		})

  

原文地址:https://www.cnblogs.com/smjia/p/5633120.html