0

html5 の入力数についていくつか質問があります。入力タイプの数の上限は何ですか

例えば。

スピナーをクリックした後に最大値が 15 または 17 より大きい場合は、表示されます (数値の末尾に +16)。

2 番目のクエリは、ios5 の html5 の datepicker のイベントは何ですか。

ありがとう

4

1 に答える 1

0

何を試したかはわかりませんが、max属性に指定された制限はありません。floating-point number

**Floating-point Number**
A floating-point number consists of the following parts, in exactly the following order:

    Optionally, the first character may be a "-" character.
    One or more characters in the range "0—9".
    Optionally, the following parts, in exactly the following order:
        a "." character
        one or more characters in the range "0—9"
    Optionally, the following parts, in exactly the following order:
        a "e" character or "E" character
        optionally, a "-" character or "+" character
        One or more characters in the range "0—9".

詳細については。http://www.w3.org/TR/html-markup/input.number.html

HTML5の「数値」要素で可能な入力を制限するにはどうすればよいですか?から答えを見つけることができます。

オンライン テストの場合、このサイトhttp://www.w3schools.com/html/html5_form_input_types.aspを使用します。

また、http://tjvantoll.com/2012/06/30/creating-a-native-html5-datepicker-with-a-fallback-to-jquery-ui/datetimeを参照できます。

于 2013-02-06T07:38:22.830 に答える