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

本文操作环境:Windows7系统、HTML5、Dell G3电脑。

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();
})
登录后复制

【推荐:HTML视频教程

以上就是html点击input没有出现光标怎么办的详细内容,更多请关注Work网其它相关文章!

08-27 04:19