CSS

IE10 之后, inputtype=‘text’ 输入内容之后右边就会有个叉 = = 

 所以要把他清除掉

    // 清除input 右边显示的叉
input::-ms-clear, input::-ms-reveal {
    display: none;
}
原文地址:https://www.cnblogs.com/sanyekui/p/14006521.html