Is it possible to disable text selection to make a PhoneGap app more similar to normal native app?
Something like this:
document.onselectstart = function() {return false;}
or:
* {
user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
}
Or many other things don't work.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…