作者:南国老符 分类:知识技术 浏览:290 日期:2021-04-02 来源:建站管家
1、去除360浏览器自动填充表单的黄色背景,推荐的方法代码如下:
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { -webkit-transition-delay: 9999s; -webkit-transition: color 9999s ease-out, background-color 9999s ease-out; }
2、对部分浏览器有效的代码如下:
<!-- 对整个表单设置 --> <form autocomplete="off" method=".." action=".."> <!-- 或对单一元素设置 --> <input type="text" name="textboxname" autocomplete="off">
上一篇:谷歌浏览器无法访问localhost本地网站的解决方法
下一篇:javascript把二维数组转为json格式的字符串代码