Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户按如下方式点击添加到 PhoneGap 应用程序的图像时,该图像似乎已被选中
<img src="image.png" onclick="action()">
这是在 Android 4.1 上。
我该如何防止这种情况发生?
您可以使用div标签来防止选择和拖动图像。这是一个示例代码
div
<div style='background: url("image.png");" />
在您的 CSS 中添加:
* { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
这应该会为您禁用点击突出显示。