html5点击input没有出现光标完美解决方案详解编程语言

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

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论