Dom选中文字事件

2012-01-10 00:00:00 by 【6yang】, 348 visits, 收藏 | 返回

<!DOCTYPE html>


<html>


<head>


    <meta charset="utf-8">


    <title>test</title>


<script type="text/javascript">


    function getSelectedText() {


        if (window.getSelection) {


            // This technique is the most likely to be standardized.


            // getSelection() returns a Selection object, which we do not document.


            return window.getSelection().toString();


        }


        else if (document.getSelection) {


            // This is an older, simpler technique that returns a string


            return document.getSelection();


        }


        else if (document.selection) {


            // This is the IE-specific technique.


            // We do not document the IE selection property or TextRange objects.


            return document.selection.createRange().text;


        }


 


    };


    // 说明:获取页面上选中的文字


    // 整理:http://www.CodeBit.cn


    


    function getSt(){


        alert(getSelectedText());


    }


</script>


<div>


    helllo.


    <input type="button" value="select" onClick="getSt()">


</div>


</body>


</html>



分享到:
share

    图片原图

    loading

    loading