欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

input type="search" 实现搜索框

程序员文章站 2022-05-18 08:44:13
...
欲实现一个文字搜索的功能,要求输入时,键盘回车按钮提示显示为“搜索”。效果如下:
input type="search" 实现搜索框

开始~

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

        <p class="search-input-wrap clearfix">
            <p class="form-input-wrap f-l">
                <form action="" class="input-kw-form">
                    <input type="search" autocomplete="off" name="baike-search" placeholder="请输入关键词" class="input-kw">
                </form>
                <i class="iconfont if-message"></i>
                <i class="iconfont if-close"></i>
            </p>
            <i class="search-cancel f-l">取消</i>
        </p>

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

  • 会默认下拉框显示搜索历史记录;
    input type="search" 实现搜索框

  • 输入时自动弹出“x”,“x”的样式在不同手机上,样式不同;
    input type="search" 实现搜索框

  • IOS 手机(测试时为iphone6 ios10)上输入框为椭圆形.
    input type="search" 实现搜索框

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

于是几经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" 实现搜索框相关文章请关注PHP中文网!

相关标签: input标签 html