zoukankan      html  css  js  c++  java
  • 禁止图片拖拽和文字被选中

    禁止图片拖拽

    method1

    img{pointer-events:none} ,firefox支持,IE不支持

    method2

    <body  ondragstart='return false'></body> || img{ondragstart='return false'}

    method3

    <body onselectstart='return false' onselectstart='no' style="-moz-user-select:none;">

    method4

    obj.onmousemove=function(ev){

      ev.preventDefault()

    }

    method5

    obj.onmouseenter=function(ev){

      //设置捕获

      this.setCapture && this.setCapture()

    }

    obj.onmouseleave=function(ev){

      //清除捕获

      this.releaseCapture && this.releaseCapture()

    }

    禁止文字选中

     body{

      -webkit-touch-callout: none;

      -webkit-user-select: none;

      -khtml-user-select: none;

      -moz-user-select: none;

      -ms-user-select: none;

      user-select: none;

    }

     

  • 相关阅读:
    Redis(二)
    Redis(一)
    MyBatis--一级二级缓存
    MySQL优化
    HashMap
    ArrayList
    常用框架注解说明
    Linux常用基础命令
    SpringCloud--gateway路由配置
    JetBrains系列软件的插件安装
  • 原文地址:https://www.cnblogs.com/xshaohua-com/p/6632256.html
Copyright © 2011-2022 走看看