代码之家  ›  专栏  ›  技术社区  ›  Talk is Cheap Show me Code

在android网络视图phonegap构建中,如何在软键盘中按回车键进入下一个输入

  •  1
  • Talk is Cheap Show me Code  · 技术社区  · 6 年前

    1) 如何在整个应用程序中实现这一点?

    3) 我可以在整个应用程序中用Go按钮替换Enter吗?但在最后一次输入中,理想情况下应该是回车键。

    截图是这样的。 enter image description here 我看起来像这样

      $('input[type="textbox"]').keyup(function(e) {
        if(e.keyCode == 13) {
            $(this).next().focus();
        }});
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   Kevin Kurien    6 年前

     android:inputType="textPersonName"
     android:singleLine="true"