`
378629846
  • 浏览: 213213 次
  • 性别: Icon_minigender_1
  • 来自: 哈尔滨
社区版块
存档分类
最新评论

js获取鼠标划词

IE 
阅读更多
<script type="text/javascript">
function getSelectText()
{
    var txt = null;
    if (window.getSelection){  // mozilla FF
        txt = window.getSelection();
    }else if (document.getSelection){
        txt = document.getSelection();
    }else if (document.selection){  //IE
        txt = document.selection.createRange().text;
    }
    return txt;
}
</script>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics