Prevent user from copying text on mobile browsers

前端 未结 11 1950
陌清茗
陌清茗 2021-02-20 01:57

I\'m trying to develop a typing speed competition using JavaScript. People should write all the words they see from a div to a textarea.

To prevent cheating (like copyin

11条回答
  •  独厮守ぢ
    2021-02-20 01:57

    You can prevent the user from actually selecting the text so it can not be copied - however I'd still combine this with paste detection as others recommended

    .noselect {
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    this can be selected

    this can NOT be selected

    But the user can still open the page source and copy it from there.

提交回复
热议问题