我正在尝试验证表单。只需尝试确认密码即可。 JS显示警报,函数返回false,但它仍然将表单提交到下一页。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
<android.support.v7.widget.AppCompatButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" // add this to you layout
android:layout_margin="@dimen/margin_10"
android:background="@drawable/button_selector"/>
</RelativeLayout>
答案 0 :(得分:0)
您的处理程序当前没有返回任何内容,请按照以下方式使用它:
onsubmit="return validatePassword();"