Disabling text selection in PhoneGap

后端 未结 9 874
伪装坚强ぢ
伪装坚强ぢ 2020-12-02 14:14

Is it possible to disable text selection to make a PhoneGap app more similar to normal native app?

Something like this:



        
9条回答
  •  一生所求
    2020-12-02 15:01

    As well as what ThinkingStiff mentioned I also use the following to remove any highlighting/copy & paste

    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    

提交回复
热议问题