获取鼠标选中的文本

【参考地址】

document.onmouseup = document.ondbclick= function(){

 var txt;

 if(document.selection){

  txt = document.selection.createRange().text

 }else{

  txt = window.getSelection()+'';

 }

 if(txt){show(txt)}

}

function show(txt){

 alert(txt)

}

你可能感兴趣的:(获取鼠标选中的文本)