如何在div内触摸时避免使用灰色的可疑div背景闪烁?
可以在iOS Safari或UIWebview对象上重现。
示例HTML网址:http://html5demos.com/contenteditable
示例图片:https://docs.google.com/file/d/0B-On7OzzI7SZZmtLMGEzZHNfNkU/edit?usp=sharing
答案 0 :(得分:4)
将此css添加到您的div中,即“contenteditable = true”
div {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}