html點擊input沒有出現遊標的解決方法:先開啟對應的HTML檔;然後用jquery寫點擊出現遊標即可,程式碼如「$('.inputname, .inputphone').on(' touchstart',function...)」。
本文操作環境: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沒有出現遊標怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!