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>

posted @ 2013-06-17 20:54  修次Edward  阅读(318)  评论(0编辑  收藏  举报