js选中文本的功能

CMS中选中文本的功能

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>12313</title>
<style type="text/css">
*{margin:0;padding:0;}
</style>
<script type="text/javascript">

document.onmouseup = showSelection;
function showSelection(){
    if(window.getSelection){
        alert(window.getSelection());
    }else if(document.selection){
        alert(document.selection.createRange().text);
    }
}

</script>
</head>
<body>
<p>这里是测试文本的内容这里是测试文本的内容这里是测试文本的内容这里是测试文本的内容</p>
</body>
</html>

原文地址:https://www.cnblogs.com/xiuciedward/p/3141043.html