禁用焦点在chrome中的输入元素上的蓝色光标

时间:2015-05-18 17:34:38

标签: javascript css google-chrome

在触摸设备上看起来像Chrome特定的行为,并且应该在长时间触摸后出现。但我不需要这个功能,因为我正在开发自助服务终端应用程序。 我试过了 -webkit-user-select: none;autocomplete=off 没有效果 以下是问题blue cursor

的图片

1 个答案:

答案 0 :(得分:0)

这应该有效:

input[type="text"]:focus {
cursor: none;
}

http://jsfiddle.net/p0Lkm5jk/2/