js 鼠标放上选中

Posted chengfengchi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 鼠标放上选中相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" type="text/javascript" charset="utf-8"></script>
<body>
    <div class=‘xz‘>
        ssssssssssssssssssssssssss
        ssssssssssssssssssssssssss
        <div>
            dddddddddddddddd
        </div>
    </div>
</body>
<script>
    $(document).ready(function()
    $(".xz").hover(function()
        this.focus();
        if(window.getSelection)
            var range=document.createRange();
            range.selectNodeContents(this);
            var selection = window.getSelection();
            selection.removeAllRanges();
            selection.addRange(range)            
            
        else if(document.selection)
            //for ie
            var range=document.body.createTextRange()
            range.moveToElementText(this)
            range.select();
        
    ,function()
        if(window.getSelection)
            var range=document.createRange();
            range.selectNodeContents(this);
            var selection = window.getSelection();
            selection.removeAllRanges();
         else if(document.selection)
            //for ie
            var range=document.body.createTextRange()
            range.moveToElementText(none)
        
    );
);
</script>
</html>

 

以上是关于js 鼠标放上选中的主要内容,如果未能解决你的问题,请参考以下文章

我想用键盘在 div 上选择文本(就像我们用鼠标选择文本一样)

js+css鼠标移动图片放大

HTML5 用鼠标在可拖动的 div 上选择 <input> 中的文本

el-button鼠标放上去调整颜色hover

鼠标放上后 会自动显示下级目录,这种用html可以实现吗?

css样式鼠标放上去变成手的形状