Prevent user from copying text on mobile browsers

前端 未结 11 1951
陌清茗
陌清茗 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:58

    It's easy to disable the paste feature by using jQuery. For example, if you have an edit field like this one:

    Here is the text

    Then, this piece of jQuery code will disable the pasting feature on it:

    $('#someInput').on('paste', function(e) {
      return false;
    });
    

提交回复
热议问题