Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个不同的页面<input type="text" name="mytextfield"/>。 当页面加载时,所有浏览器都会在输入字段中显示插入符号(插入点)。
<input type="text" name="mytextfield"/>
在 Android 和 iPad 中,这会直接触发键盘,用户无法看到页面并选择要写入的输入字段。
问:有没有办法避免这种情况?
试试这个,一旦页面加载它就会将焦点移到您的文本框
$(document).ready(function(){ $("input[type=text]").blur(); });
对于普通的 javascript 使用这个
window.onload=function(){ document.getElementsByName("mytextfield")[0].blur(); /*other textbox*/ ... ... ... };