是否可以禁用文本選擇以使PhoneGap應用程序更類似於普通的本機應用程序?在PhoneGap中禁用文本選擇
事情是這樣的:
document.onselectstart = function() {return false;}
或:
* {
user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
}
或許多其他事情不工作。
Thanx它的工作原理!不要忘記在loadUrl之後添加它,否則appView可能爲空。 – guya 2012-12-10 18:34:02
對我來說,我不得不插入一行,所有這些代碼是:super.appView.setLongClickable(false);那麼這個解決方案適用於我。 – 2013-06-26 04:32:48
儘管如何啓用文本選擇?我沒有看到WebView的默認行爲允許文本選擇和一些默認的上下文菜單... – 2015-07-29 22:59:25