代码编辑器:
x
1
<form action="/dy/html/getpost">
2
E-mail: <input type="email" id="myEmail" name="email" autocomplete="on">
3
<input type="submit">
4
</form>
5
<p>点击 "尝试一下" 按钮查看 email 字段的 autocomplete 属性是 "on" 还是 "off"</p>
6
<button onclick="myFunction()">尝试一下</button>
7
<p><strong>注意:</strong>Internet Explorer 9 及更早 IE 版本,Safari 浏览器不支持 input type="email 元素</p>
8
<p id="demo"></p>
9
<script>
10
function myFunction() {
11
var x = document.getElementById("myEmail").autocomplete;
12
document.getElementById("demo").innerHTML = x;
13
}
14
</script>
15