1. 程式人生 > >獲取 滑鼠左鍵選中的文字

獲取 滑鼠左鍵選中的文字

if (window.getSelection) {//一般瀏覽器 
	userSelection = window.getSelection();} 
	else if (document.selection) {//IE瀏覽器、Opera 
	userSelection = document.selection.createRange();
}
userSelection=userSelection.toString();//選中的文字值

選中方法:select();