打开应用程序时自动对焦 HTML 输入
Autofocus HTML input when app is opened
我有一个带有 WKWebView
的 iOS 网络应用程序。我想在应用程序打开时输入 HTML 以自动对焦。我尝试过但没有奏效的方法:
html autofocus
标签
<input autofocus />
JavaScript
document.getElementById("my_input").focus();
感谢您的帮助。
由于安全问题,在 iOS 中是不可能的。输入只能关注点击事件。
我有一个带有 WKWebView
的 iOS 网络应用程序。我想在应用程序打开时输入 HTML 以自动对焦。我尝试过但没有奏效的方法:
html
autofocus
标签<input autofocus />
JavaScript
document.getElementById("my_input").focus();
感谢您的帮助。
由于安全问题,在 iOS 中是不可能的。输入只能关注点击事件。