How can I stop text from being selected?

后端 未结 2 2054
旧时难觅i
旧时难觅i 2021-02-07 21:50

In my web app the user can sometimes click the same button a number of times, skipping through messages and things, causing the to be selected.

S

2条回答
  •  没有蜡笔的小新
    2021-02-07 22:33

    You dont need script for this, here is the css:

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    

提交回复
热议问题