最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to change keyboard button "Return" to "Search" for input in a UIWebView? -

programmeradmin4浏览0评论

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 badges
Add a ment  | 

3 Answers 3

Reset to default 11

I 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 :

发布评论

评论列表(0)

  1. 暂无评论