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();
})