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 构建的本机应用程序的 html 内容。此应用程序有 2 个字段,文本和 texarea 之一。当我写在每个激活蓝色背景,我可以看透。
我怎样才能禁用那个蓝色?
如果它使用 CSS,那么激活蓝色背景的代码可能看起来像这样:
textfield:focus, textarea:focus { background-color:blue; }
如果是这种情况,那么您可以简单地删除该 CSS 规则,它应该可以解决您的问题。
或者,背景颜色可能是通过 javascript 添加的,在这种情况下,您必须检查您的 javascript 文件以查看它发生的位置并将其从那里删除。