Google Toolbar的AutoFill和可自动填写区域的黄色底色
安装google的Toolbar(英文版),其中一项特性是支持AutoFill功能。一但Toolbar发现web页界面中包含特定的Input,就能够自动填写,可自动填写区域的底色会变为黄色。
常见的input的name
<Form>

<input type="text" name="FullName" />

<input type="text" name="Email" />

<input type="text" name="Country" />

<input type="text" name="State" />

<input type="text" name="City" />

<input type="text" name="Zipcode" />

<Form>
有时候遇到Input的底色被改为黄色,影响了页面的效果,可改变Input的name或id来解决。
常见的input的name
直接以email, name等来命名Input,可以Autofill。也可能是根据上下文的关联来判断。因为不同的name可能导致前后若干输入框都无法Autofill。
<Form>
<input type="text" name="FullName" />
<input type="text" name="Email" />
<input type="text" name="Country" />
<input type="text" name="State" />
<input type="text" name="City" />
<input type="text" name="Zipcode" />
<Form>
浙公网安备 33010602011771号