input type="search" 实现搜索框

欲实现一个文字搜索的功能,要求输入时,键盘回车按钮提示显示为“搜索”。效果如下:


input type=
Paste_Image.png

开始~
input type=text并不能达到这种效果,google了一下,html5 增加的type=search可以做到(但需要input type=search外面包上一层带action属性的form)。

        
取消

但type=search会有许多默认样式和行为,这次开发遇到的有:

  • 会默认下拉框显示搜索历史记录;


    input type=
    3283C42B-4CCD-478D-B275-50C10A2F770C.png
  • 输入时自动弹出“x”,“x”的样式在不同手机上,样式不同;


    3B8D4F17-8218-4458-8E89-05E9666F8464.png
  • IOS 手机(测试时为iphone6 ios10)上输入框为椭圆形.


    A63C671C-C523-4007-976F-C84DF29BC052.png

但我们希望样式按照我们自定义的样式显示,并且各个手机上能统一。

于是几经google,得到答案:

  • 设置input autocomplete="off"去掉弹出的下拉框;
  • 将默认的“x”隐藏掉:
input[type="search"]::-webkit-search-cancel-button{
    display: none;
}
  • 针对ios 设置样式, 去除ios下input 椭圆形:
    -webkit-appearance: none;

同时别忘记,如果提交搜索时想使用ajax,那么可以阻止表单的默认行为:

container.on('submit', '.input-kw-form', function(event){
    event.preventDefault();
})

你可能感兴趣的:(input type="search" 实现搜索框)