0

我有这个输入字段

<input type="text" placeholder="Placeholder Text..." id="adddress" maxlength="80"/>

但是,它显示了我在另一个网站上用手机输入的电子邮件地址,这是一种奇怪的行为。

我在stackoverflow上找到了这个谷歌故障排除和这个。但两者似乎都有 type="number" 的问题。我将输入字段更改为此。

<input type="text" onfocus="this.type='number'" onblur="this.type='text'" placeholder="placeholder text"/>

但它不起作用。它只发生在 Android 4.x 中。有没有人遇到过类似的情况,有什么建议给我吗?

4

1 回答 1

0

如果有人有同样的问题:

Delete the formula data on the phone. (Adnroid 4.x Stock Browser.), it seems to solve the problem.
于 2013-04-19T07:58:22.913 回答