css - ios input adds readonly unselectable="on" attribute, the cursor is still there, how to clear the cursor
过去多啦不再A梦
过去多啦不再A梦 2017-05-16 13:22:37
0
1
1129

<input type="text" readonly unselectable="on" value="Click me"/>

There is still a cursor when clicking input in ios
Normal on Android
<input type="text" readonly unselectable="on" onfocus="this.blur()" value="Click me"/ >
This way ios will be normal too

过去多啦不再A梦
过去多啦不再A梦

reply all(1)
过去多啦不再A梦
这个问题之前我也遇到过,ios浏览器和ie9已下(包括ie9)浏览器都有input设置readonly之后input还有聚焦的问题。
解决的方法有两种,一种是直接设置input的disabled属性。不过这样设置会使input的事件失效。
另一种方法就是input聚焦时马上让它失去焦点,这样可以规避光标显示了。
$('input[readonly]').on('focus', function() {
    $(this).trigger('blur');
});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template