如何在UIWebView中将键盘按钮“返回”更改为“搜索”以进行输入?

时间:2013-12-02 04:12:14

标签: javascript ios search input uiwebview

我有一个简单的HTML文件,将在UIWebView中显示。

<html>
<body>
  <p>
  <input name='search' type='search' placeholder="Input type is search" />
</body>
</html>

这是我点击输入框时的屏幕截图。

enter image description here

如何像Google页面一样将“返回”按钮更改为“搜索”?

enter image description here

3 个答案:

答案 0 :(得分:6)

我找到了一个简单的解决方案。只需使用表单标记包装输入,以便HTML看起来像这样。

<html>
<body>
  <p>
  <form>
    <input name='search' type='search' placeholder="Input type is search" />
  </form>
</body>
</html>

现在键盘看起来像

enter image description here

答案 1 :(得分:0)

查看参考:Text Programming Guide for iOS我可以看到类型搜索不是一个选项,所以我认为Safari以不同的方式处理它。也许使用自定义输入视图。看看我的answer就可以了。

答案 2 :(得分:-4)

你必须选择textfield&amp;在身份检查员中,您可以选择如下图所示的搜索: