首页 > web前端 > css教程 > 正文

如何禁用 HTML 中的文本选择?

Mary-Kate Olsen
发布: 2024-11-10 19:31:03
原创
601 人浏览过

How to Disable Text Selection in HTML?

不可选择的 HTML 文本:超越 Vanilla HTML

虽然纯 HTML 本身无法阻止文本选择,但可以采用各种技术来克服此限制。其中一种方法涉及利用 CSS3:

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
登录后复制

将此样式集成到 HTML 元素中会禁用文本选择:

<label class="unselectable">Unselectable label</label>
登录后复制

为了更广泛的浏览器兼容性,可以考虑使用 JavaScript 后备:

<label onselectstart="return false;">Unselectable label</label>
登录后复制

如果多个标签需要此功能,可以使用通用 JavaScript 函数来迭代和禁用选择:

var labels = document.getElementsByTagName('label');
for (var i = 0; i < labels.length; i++) {
    disableSelection(labels[i]);
}
 
function disableSelection(element) {
    if (typeof element.onselectstart != 'undefined') {
        element.onselectstart = function() { return false; };
    } else if (typeof element.style.MozUserSelect != 'undefined') {
        element.style.MozUserSelect = 'none';
    } else {
        element.onmousedown = function() { return false; };
    }
}
登录后复制

或者,通过集成 jQuery,可以添加“disableSelection()”函数来简化过程:

<label>Try to select this</label>

<script>
    $.fn.extend({ 
        disableSelection: function() { 
            this.each(function() { 
                if (typeof this.onselectstart != 'undefined') {
                    this.onselectstart = function() { return false; };
                } else if (typeof this.style.MozUserSelect != 'undefined') {
                    this.style.MozUserSelect = 'none';
                } else {
                    this.onmousedown = function() { return false; };
                }
            }); 
        } 
    });

    $(document).ready(function() {
        $('label').disableSelection();            
    });
</script>
登录后复制

这些方法有效地禁用文本选择,防止防止用户无意中选择并破坏网页的功能。

以上是如何禁用 HTML 中的文本选择?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板