How can I prevent text/element selection with cursor drag

后端 未结 8 1053
刺人心
刺人心 2020-12-02 08:12

I made a paging control and I noticed that while clicking on the buttons it is very easy to accidentally select the individual images and text. Is it possible to prevent thi

8条回答
  •  臣服心动
    2020-12-02 08:20

    If you need to block text selection for a certain element using JavaScript, then the simplest method for me was to assign userSelect style like this:

    var myElement = document.createElement('div');
    myElement.style.userSelect = 'none';
    

提交回复
热议问题