我有这个输入字段
<input type="text" placeholder="Placeholder Text..." id="adddress" maxlength="80"/>
但是,它显示了我在另一个网站上通过手机输入的电子邮件地址,这很奇怪。
我在stackoverflow上找到了this google问题排查和this。但两者似乎都有type =“number”的问题。我将输入字段更改为此。
<input type="text" onfocus="this.type='number'" onblur="this.type='text'" placeholder="placeholder text"/>
但它不起作用。它只发生在Android 4.x中。任何人都经历过类似的事情并且对我来说有任何问题?
答案 0 :(得分:0)
如果有人遇到同样的问题:
Delete the formula data on the phone. (Adnroid 4.x Stock Browser.), it seems to solve the problem.