autocomplete属性使用

来源:互联网 发布:淘宝详情页ps模板 编辑:程序博客网 时间:2024/06/03 12:40
<!doctype html>
<html>
<head>
<style>
#test1{
width:221px;
}
</style>
<script>
</script>
<meta charset="UTF-8">
</head>
<body>
<form>
请输入:<input type="text" autocomplete="on">
<!--autocomplete设置开启或关闭预测输入的功能,值是on或者off-->
<input type="submit">
</form>
</body>
</html>
原创粉丝点击