admin管理员组文章数量:1344310
I have this simple HTML file that is to be displayed in a UIWebView.
<html>
<body>
<p>
<input name='search' type='search' placeholder="Input type is search" />
</body>
</html>
Here is the screenshot when I clicked the input box.
How to change the Return button to 'Search' like Google page does?
I have this simple HTML file that is to be displayed in a UIWebView.
<html>
<body>
<p>
<input name='search' type='search' placeholder="Input type is search" />
</body>
</html>
Here is the screenshot when I clicked the input box.
How to change the Return button to 'Search' like Google page does?
Share Improve this question asked Dec 2, 2013 at 4:12 marsantmarsant 1,10813 silver badges31 bronze badges3 Answers
Reset to default 11I found a simple solution. Just wrap the input with form tag so the HTML looks like this.
<html>
<body>
<p>
<form>
<input name='search' type='search' placeholder="Input type is search" />
</form>
</body>
</html>
And now the keyboard looks like
Looking in the reference: Text Programming Guide for iOS and I can see that the type search isn't an option, so I think that Safari handle that with a different way. Maybe with a custom inputview. Take a look in my answer to do that.
You have to select the textfield & in identity inspector you select search shown in pic below :
本文标签:
版权声明:本文标题:javascript - How to change keyboard button "Return" to "Search" for input in a UIWebView? - 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743759759a2534143.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论