【发布时间】:2012-08-02 23:26:59
【问题描述】:
是否可以禁用文本选择以使 PhoneGap 应用更类似于普通的原生应用?
类似这样的:
document.onselectstart = function() {return false;}
或:
* {
user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
}
或者很多其他的东西都不起作用。
【问题讨论】:
标签: android cordova textselection