我正在开发一个运行在单个文档中的网站(在第一个文档之后没有真正的页面加载,它都是 ajax),您必须登录才能查看。首页的登录表单会完全按照您的预期自动填充。
问题是当我在 iframe 中加载登录表单时。在大多数浏览器上,它会自动填充与首页相同的信息,并且运行良好。但在 android 浏览器中,它根本不会自动填充表单。
我想我的问题是,有没有办法让它在 android 浏览器中正常运行,而不仅仅是在 html 中自动填充服务器端?
这是表单的html:
<form method="POST" id="login_form" class="disable_on_submit">
<input type="hidden" name="action" value="login" />
<div class="row first">
<label for="username">Email Address:</label>
<input type="email" name="username" id="username" placeholder="Email Address..." />
</div>
<div class="row">
<label for="password">Password:</label>
<input type="password" name="password" id="password" placeholder="Password..." />
</div>
<input type="submit" name="submit" id="submit" class="awesome" value="Login" />
</form>