html5点击input没有出现光标完美解决方案
<input type="text" placeholder="输入姓名" class="inputname" id="id_name">
<input type="text" placeholder="输入手机" class="inputphone" id="id_phone">
直接自己用jquery 写点击出现光标
$('.inputname, .inputphone').on('touchstart',function () {
$(this).focus();
})
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/18914.html