js获取鼠标选中文字事件

js获取鼠标选中文字事件,js怎么获取鼠标选中文字,下面贴出代码,由于兼容IE和大众浏览器,如下所示:

<script language="javascript"> (function(w){ var doc = document; var div = doc.getElementsByTagName('div')[0]; //var location = window.location; //location.href = "http://www.baidu.com/"; console.log(div); //console.log(location); div.onmouseup = function(e){ var e =e ||window.event; console.log(selectText()); }   function selectText(){   if(document.selection){ //ie return document.selection.createRange().text; } else{  //标准 return window.getSelection().toString(); }   }     })(window);   </script>  

返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册