Disabling Android Keyboard's 'Go' Button for WebView Text Entry

别来无恙 提交于 2019-11-30 20:26:48
Vikas

You may stop submitting form by putting the onsubmit event of the form.

Here's a more detailed answer that uses the method alluded to by Vikas.

Since the problem is that your form is submitting, you can add an onSubmit attribute to your form element that runs JavaScript to determine if your form should be submitted.

Below is the form that you don't want to submit:

<form name="myForm" onSubmit="return doNothing()">
    <!-- Elements included in the form -->
</form>

And include this script that returns false which keeps your form from submitting.

<script>
function doNothing()
{
    return false;
}
</script>

Now, when you press Go after entering text into your text input field, the keyboard will simply collapse without submitting the form.

This could also be used to check for errors in your form. See the webpage below: http://www.htmlcodetutorial.com/forms/_FORM_onSubmit.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!