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.
问题是关于显示 HTML5 页面的标准浏览器,而不是 WebView
测试设备是 Galaxy Tab 10.1,尽管这也出现在 iPad 上。
该页面有一个表格。表格有固定的宽度和
margin-left: auto; margin-right: auto;
当我触摸并按住页面正文(表单外部)时,其中一个表单输入(通常是第一个,尽管有时是第二个)被聚焦(并显示屏幕键盘)。
有什么解释为什么会出现这种行为?知道如何预防吗?
使用HTML5 的 autofocus属性来强制浏览器最初关注你想要的元素。
<input autofocus="autofocus" />
较旧的浏览器将忽略该属性。