mingyunyuziyou

如何禁止网站内容复制?
在文章也加上如下标签 css标签:<style type=”text/css”> body {...
扫描右侧二维码阅读全文
26
2020/01

如何禁止网站内容复制?

在文章也加上如下标签 css标签:

<style type=”text/css”>
    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
</style>
Last modification:January 26th, 2020 at 01:24 pm
If you think my article is useful to you, please feel free to appreciate

Leave a Comment