美文网首页
禁止选择网页内容

禁止选择网页内容

作者: YoungEvita | 来源:发表于2018-07-27 07:50 被阅读0次

1. 通过css样式来控制

<html>

<head lang="en">
    <meta charset="UTF-8">
    <title>demo</title>
    <script type="text/javascript" src="jquery-1.7.2.min.js"></script>
    <style>
        .unselectable {
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
    </style>
</head>

<body>
    <div class="unselectable">
        禁止选中这段内容。
    </div>
</body>

</html>

2. 通过JS来控制

<html>

<head lang="en">
    <meta charset="UTF-8">
    <title>demo</title>
    <script type="text/javascript" src="jquery-1.7.2.min.js"></script>
</head>

<body>
    <div class="unselectable">
        禁止选中这段内容。
    </div>
</body>

</html>
<script type="text/javascript">
    $(".unselectable").on('selectstart', function(event) {
        return false;
    })
</script>

IE 10 、Chrome 66 、Firefox 58 均有效果。

相关文章

网友评论

      本文标题:禁止选择网页内容

      本文链接:https://www.haomeiwen.com/subject/tddbpftx.html