css设置不容许复制文本内容

以前作一个网上答题的页面时,考虑到要防止考生利用复制粘贴来提升做弊的可能性,就设计了不容许复制。
方法也很简单,经过设置CSS 的 user-select就能够达到目的:html

  -moz-user-select:none; /* Firefox私有属性 */
    -webkit-user-select:none; /* WebKit内核私有属性 */
    -ms-user-select:none; /* IE私有属性(IE10及之后) */
    -khtml-user-select:none; /* KHTML内核私有属性 */
    -o-user-select:none; /* Opera私有属性 */
    user-select:none; /* CSS3属性 */

user-select的默认值是 text:能够选择文本
none:文本不被选择web

相关文章
相关标签/搜索