暂无 |

74. 移动端禁止选中内容

A
B
C
D
答案:
如果你不想用户可以选中页面中的内容,那么你可以在css中禁掉:

.user-select-none {

  -webkit-user-select: none;  /* Chrome all / Safari all */

  -moz-user-select: none;     /* Firefox all (移动端不需要) */

  -ms-user-select: none;      /* IE 10+ */

}
解释:
css兼容

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论