iphone H5 input type="search" 不显示搜索 解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iphone H5 input type="search" 不显示搜索 解决办法相关的知识,希望对你有一定的参考价值。
H5 input type="search" 不显示搜索 解决办法
H5 input type="search" 不显示搜索 解决方法
在ios(ipad iPhone等)系统的浏览器里打开H5页面。如下写法:
<input type="search" name="search” id="search">
以上设备的键盘仍然显示“换行”。
解决方法如下:在input外面嵌套一层form:
<form action=""> <input type="search" name="search" id="search"> </form>
其中form 必须有action。
如果你不想要action,因为它可能影响了你input的提交逻辑,可以重写一下onsubmit onclick等方法来实现。
也可以用简单的方法:action="javascript:return true;"。
转自:http://www.myexception.cn/html-CSS/2003836.html
以上是关于iphone H5 input type="search" 不显示搜索 解决办法的主要内容,如果未能解决你的问题,请参考以下文章