美文网首页
input type="search"

input type="search"

作者: 青檬眼豆豆 | 来源:发表于2017-06-16 17:06 被阅读18次

input type="search"
对于手机端,欲实现文字的搜索功能,要求手机键盘回车键提示为“搜索”.
https://segmentfault.com/a/1190000007765742
<input type="search" autocomplete="off" name="baike-search" placeholder="请输入关键词" class="input-kw">

 设置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"

      本文链接:https://www.haomeiwen.com/subject/amsmqxtx.html