参考-https://blog.csdn.net/qq_36435508/article/details/78139106?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-3.channel_param
input框在浏览器上显示一个叉,去掉方法
--清除谷歌浏览器下的 search 叉号
input::-webkit-search-cancel-button{
display: none;
}
--清除IE下的 search 叉号
input[type=search]::-ms-clear{
display: none;
}