html点击input没有出现光标怎么办

来自:互联网
时间:2021-02-25
阅读:

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();
})
返回顶部
顶部