有没有办法控制Internet Explorer所需的字段提示的位置或行为?

时间:2015-12-17 04:48:59

标签: html5 internet-explorer-11

我们有一个HTML表单,其中android-support-design library元素设置为<?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" > <!-- include your content layout --> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/main_content" android:layout_width="match_parent" android:layout_height="match_parent" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <include layout="@layout/toolbar" /> <FrameLayout android:id="@+id/fragment_container" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" > <fragment android:id="@+id/homepage" android:name="com.technotalkative.navigationviewdemo.MyFragment" android:layout_width="match_parent" android:layout_height="match_parent" /> </FrameLayout> </LinearLayout> </android.support.design.widget.CoordinatorLayout> <!-- Navigation view --> <android.support.design.widget.NavigationView android:id="@+id/navigation_view" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" app:headerLayout="@layout/drawer_header" android:layout_marginTop="@dimen/topMargin" app:menu="@menu/drawer_view" /> </android.support.v4.widget.DrawerLayout> 属性:

input

当用户尝试在字段为空的情况下在Internet Explorer中提交表单时,会出现提示符号required。但是,气泡出现在日历选择器前面,并且不能被用户解雇,使得日历选择器的使用受限。

Image of required field prompt obscuring the calendar picker

有没有办法控制提示的位置或行为,而不完全删除<input ui-date="dateOptions" id="ExpiryDate" name="expiryDate" class="form-control hasDatepicker" required=""> 属性?

0 个答案:

没有答案