Php input type number ให ม ทศน ยม

<input type="text" inputmode="numeric" pattern="\d*" />

4 elements of type

<input type="text" inputmode="numeric" pattern="\d*" />

Show

    5 are used to let the user enter a number. They include built-in validation to reject non-numerical entries.

    The browser may opt to provide stepper arrows to let the user increase and decrease the value using their mouse or by tapping with a fingertip.

    On browsers that don't support inputs of type

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5, a

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 input falls back to type

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    8.

    A number representing the value of the number entered into the input. You can set a default value for the input by including a number inside the attribute, like so:

    <input id="number" type="number" value="42" />
    

    In addition to the attributes commonly supported by all

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    4 types, inputs of type

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 support these attributes.

    The values of the list attribute is the

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    3 of a

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    4 element located in the same document. The

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    4 provides a list of predefined values to suggest to the user for this input. Any values in the list that are not compatible with the are not included in the suggested options. The values provided are suggestions, not requirements: users can select from this predefined list or provide a different value.

    The maximum value to accept for this input. If the entered into the element exceeds this, the element fails constraint validation. If the value of the

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    7 attribute isn't a number, then the element has no maximum value.

    This value must be greater than or equal to the value of the

    <input type="number" placeholder="Multiple of 10" />
    

    0 attribute.

    The minimum value to accept for this input. If the of the element is less than this, the element fails constraint validation. If a value is specified for

    <input type="number" placeholder="Multiple of 10" />
    

    0 that isn't a valid number, the input has no minimum value.

    This value must be less than or equal to the value of the

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    7 attribute.

    The

    <input type="number" placeholder="Multiple of 10" />
    

    5 attribute is a string that provides a brief hint to the user as to what kind of information is expected in the field. It should be a word or short phrase that demonstrates the expected type of data, rather than an explanatory message. The text must not include carriage returns or line feeds.

    If the control's content has one directionality (LTR or RTL) but needs to present the placeholder in the opposite directionality, you can use Unicode bidirectional algorithm formatting characters to override directionality within the placeholder; see How to use Unicode controls for bidi text for more information.

    Note: Avoid using the

    <input type="number" placeholder="Multiple of 10" />
    

    5 attribute if you can. It is not as semantically useful as other ways to explain your form, and can cause unexpected technical issues with your content. See for more information.

    A Boolean attribute which, if present, means this field cannot be edited by the user. Its

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    9 can, however, still be changed by JavaScript code directly setting the

    <input type="number" placeholder="multiple of 10" step="10" />
    

    1

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    9 property.

    Note: Because a read-only field cannot have a value,

    <input type="number" placeholder="multiple of 10" step="10" />
    

    3 does not have any effect on inputs with the

    <input type="number" placeholder="Multiple of 10" />
    

    9 attribute also specified.

    The

    <input type="number" placeholder="multiple of 10" step="10" />
    

    5 attribute is a number that specifies the granularity that the value must adhere to, or the special value

    <input type="number" placeholder="multiple of 10" step="10" />
    

    7, which is described below. Only values which are equal to the basis for stepping ( if specified, otherwise, and an appropriate default value if neither of those is provided) are valid.

    A string value of

    <input type="number" placeholder="multiple of 10" step="10" />
    

    7 means that no stepping is implied, and any value is allowed (barring other constraints, such as and ).

    Note: When the data entered by the user doesn't adhere to the stepping configuration, the user agent may round to the nearest valid value, preferring numbers in the positive direction when there are two equally close options.

    The default stepping value for

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 inputs is

    <input type="number" placeholder="multiple of 10" step="10" min="0" max="100" />
    

    4, allowing only integers to be entered—unless the stepping base is not an integer.

    The

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 input type should only be used for incremental numbers, especially when spinbutton incrementing and decrementing are helpful to user experience. The

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 input type is not appropriate for values that happen to only consist of numbers but aren't strictly speaking a number, such as postal codes in many countries or credit card numbers. For non-numeric inputs, consider using a different input type, such as

    <input type="number" placeholder="multiple of 10" step="10" min="0" max="100" />
    

    7 or other

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    4 type with the attribute:

    <input type="text" inputmode="numeric" pattern="\d*" />
    
    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    0 elements can help simplify your work when building the user interface and logic for entering numbers into a form. When you create a number input with the proper

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    6 value,

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5, you get automatic validation that the entered text is a number, and usually a set of up and down buttons to step the value up and down.

    Warning: Logically, you should not be able to enter characters inside a number input other than numbers. Some browsers allow invalid characters, others do not; see Firefox bug 1398528.

    Note: A user can tinker with your HTML behind the scenes, so your site must not use simple client-side validation for any security purposes. You must verify on the server side any transaction in which the provided value may have security implications of any kind.

    Mobile browsers further help with the user experience by showing a special keyboard more suited for entering numbers when the user tries to enter a value.

    In its most basic form, a number input can be implemented like this:

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    A number input is considered valid when empty and when a single number is entered, but is otherwise invalid. If the attribute is used, the input is no longer considered valid when empty.

    Sometimes it's helpful to offer an in-context hint as to what form the input data should take. This can be especially important if the page design doesn't offer descriptive labels for each

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    4. This is where placeholders come in. A placeholder is a value most commonly used to provide a hint as to the format the input should take

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    9. It is displayed inside the edit box when the element's

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    9 is

    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    7. Once data is entered into the box, the placeholder disappears; if the box is emptied, the placeholder reappears.

    Here, we have an

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 input with the placeholder "

    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    9". Note how the placeholder disappears and reappears as you manipulate the contents of the edit field.

    <input type="number" placeholder="Multiple of 10" />
    

    By default, the up and down buttons provided for you to step the number up and down will step the value up and down by 1. You can change this by providing a attribute, which takes as its value a number specifying the step amount. Our above example contains a placeholder saying that the value should be a multiple of 10, so it makes sense to add a

    <input type="number" placeholder="multiple of 10" step="10" />
    

    5 value of

    <input
      type="number"
      placeholder="x10"
      step="10"
      min="0"
      max="100"
      id="number" />
    

    2:

    <input type="number" placeholder="multiple of 10" step="10" />
    

    In this example, you should find that the up and down step arrows will increase and decrease the value by 10 each time, not 1. You can still manually enter a number that's not a multiple of 10, but it will be considered invalid.

    You can use the and attributes to specify a minimum and maximum value that the field can have. For example, let's give our example a minimum of

    <input
      type="number"
      placeholder="x10"
      step="10"
      min="0"
      max="100"
      id="number" />
    

    5, and a maximum of

    <input
      type="number"
      placeholder="x10"
      step="10"
      min="0"
      max="100"
      id="number" />
    

    6:

    <input type="number" placeholder="multiple of 10" step="10" min="0" max="100" />
    

    In this updated version, you should find that the up and down step buttons will not allow you to go below 0 or above 100. You can still manually enter a number outside these bounds, but it will be considered invalid.

    One issue with number inputs is that their step size is 1 by default. If you try to enter a number with a decimal (such as "1.0"), it will be considered invalid. If you want to enter a value that requires decimals, you'll need to reflect this in the

    <input type="number" placeholder="multiple of 10" step="10" />
    

    5 value (e.g.

    <input
      type="number"
      placeholder="x10"
      step="10"
      min="0"
      max="100"
      id="number" />
    

    8 to allow decimals to two decimal places). Here's a simple example:

    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    See that this example allows any value between

    <input
      type="number"
      placeholder="x10"
      step="10"
      min="0"
      max="100"
      id="number" />
    

    9 and

    <input id="ticketNum" type="number" name="ticketNum" list="defaultNumbers" />
    <span class="validity"></span>
    <datalist id="defaultNumbers">
      <option value="10045678"></option>
      <option value="103421"></option>
      <option value="11111111"></option>
      <option value="12345678"></option>
      <option value="12999922"></option>
    </datalist>
    

    0, with decimals to two places. For example, "9.52" is valid, but "9.521" is not.

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    4 elements of type

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 don't support form sizing attributes such as . You'll have to resort to CSS to change the size of these controls.

    For example, to adjust the width of the input to be only as wide as is needed to enter a three-digit number, we can change our HTML to include an and to shorten our placeholder since the field will be too narrow for the text we have been using so far:

    <input
      type="number"
      placeholder="x10"
      step="10"
      min="0"
      max="100"
      id="number" />
    

    Then we add some CSS to narrow the width of the element with the

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    3 selector

    <input id="ticketNum" type="number" name="ticketNum" list="defaultNumbers" />
    <span class="validity"></span>
    <datalist id="defaultNumbers">
      <option value="10045678"></option>
      <option value="103421"></option>
      <option value="11111111"></option>
      <option value="12345678"></option>
      <option value="12999922"></option>
    </datalist>
    

    6:

    The result looks like this:

    You can provide a list of default options from which the user can select by specifying the attribute, which contains as its value the of a

    <label for="ticketNum">Number of tickets you would like to buy:</label>
    <input id="ticketNum" type="number" name="ticketNum" value="0" />
    

    4, which in turn contains one

    <form>
      <div>
        <label for="balloons">Number of balloons to order (multiples of 10):</label>
        <input
          id="balloons"
          type="number"
          name="balloons"
          step="10"
          min="0"
          max="100"
          required />
        <span class="validity"></span>
      </div>
      <div>
        <input type="submit" />
      </div>
    </form>
    

    0 element per suggested value. Each

    <form>
      <div>
        <label for="balloons">Number of balloons to order (multiples of 10):</label>
        <input
          id="balloons"
          type="number"
          name="balloons"
          step="10"
          min="0"
          max="100"
          required />
        <span class="validity"></span>
      </div>
      <div>
        <input type="submit" />
      </div>
    </form>
    

    1's

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    9 is the corresponding suggested value for the number entry box.

    <input id="ticketNum" type="number" name="ticketNum" list="defaultNumbers" />
    <span class="validity"></span>
    <datalist id="defaultNumbers">
      <option value="10045678"></option>
      <option value="103421"></option>
      <option value="11111111"></option>
      <option value="12345678"></option>
      <option value="12999922"></option>
    </datalist>
    

    We have already mentioned a number of validation features of

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    5 inputs, but let's review them now:

    • <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />

      0 elements automatically invalidate any entry that isn't a number (or empty, unless

      <input type="number" placeholder="multiple of 10" step="10" />

      3 is specified).
    • You can use the attribute to make an empty entry invalid. (In other words, the input must be filled in.)
    • You can use the attribute to constrain valid values to a certain set of steps (e.g., multiples of 10).
    • You can use the and attributes to constrain valid values to lower and upper bounds.

    The following example exhibits all of the above features, as well as using some CSS to display valid and invalid icons, depending on the

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    00's value:

    <form>
      <div>
        <label for="balloons">Number of balloons to order (multiples of 10):</label>
        <input
          id="balloons"
          type="number"
          name="balloons"
          step="10"
          min="0"
          max="100"
          required />
        <span class="validity"></span>
      </div>
      <div>
        <input type="submit" />
      </div>
    </form>
    

    Try submitting the form with different invalid values entered — e.g., no value; a value below 0 or above 100; a value that is not a multiple of 10; or a non-numerical value — and see how the error messages the browser gives you differ with different ones.

    The CSS applied to this example is as follows:

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    0

    Here we use the

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    01 and

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    02 pseudo classes to display an appropriate invalid or valid icon as generated content on the adjacent

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    03 element, as a visual indicator of validity.

    We put it on a separate

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    03 element for added flexibility. Some browsers don't display generated content very effectively on some types of form inputs. (Read, for example, the section on .)

    Warning: HTML form validation is not a substitute for server-side scripts that ensure that the entered data is in the proper format!

    It's far too easy for someone to make adjustments to the HTML that allow them to bypass the validation, or to remove it entirely. It's also possible for someone to bypass your HTML and submit the data directly to your server.

    If your server-side code fails to validate the data it receives, disaster could strike when improperly-formatted data is submitted (or data which is too large, is of the wrong type, and so forth).

    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    0 elements do not support use of the attribute for making entered values conform to a specific regex pattern.

    The rationale for this is that number inputs won't be valid if they contain anything except numbers, and you can constrain the minimum and maximum number of valid digits using the and attributes (as explained above).

    We've already covered the fact that by default, the increment is

    <input type="number" placeholder="multiple of 10" step="10" min="0" max="100" />
    

    4, and you can use the attribute to allow decimal inputs. Let's take a closer look.

    In the following example is a form for entering the user's height. It defaults to accepting a height in meters, but you can click the relevant button to change the form to accept feet and inches instead. The input for the height in meters accepts decimals to two places.

    The HTML looks like this:

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    1

    You'll see that we are using many of the attributes we've already looked at in the article earlier on. Since we want to accept a meter value in centimeters, we've set the

    <input type="number" placeholder="multiple of 10" step="10" />
    

    5 value to

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    13, so that values like 1.78 are not seen as invalid. We've also provided a placeholder for that input.

    We've hidden the feet and inches inputs initially using

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    14, so that meters is the default entry type.

    Now, onto the CSS. This looks very similar to the validation styling we saw before; nothing remarkable here.

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    2

    And finally, the JavaScript:

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    3

    After declaring a few variables, an event listener is added to the

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    15 to control the switching mechanism. This is pretty simple, mostly involving changing over the button's

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    16 and

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    17, and updating the display values of the two sets of inputs when the button is pressed.

    (Note that we're not converting back and forth between meters and feet/inches here, which a real-life web application would probably do.)

    Note: When the user clicks the button, the

    <input type="number" placeholder="multiple of 10" step="10" />
    

    3 attribute(s) are removed from the input(s) we are hiding, and empty the

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    9 attribute(s). This is so the form can be submitted if both input sets aren't filled in. It also ensures that the form won't submit data that the user didn't mean to.

    If you didn't do this, you'd have to fill in both feet/inches and meters to submit the form!

    The implicit role for the

    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    0 element is

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    21. If spinbutton is not an important feature for your form control, consider not using

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    22. Instead, use

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    23 along with a

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    07 attribute that limits the characters to numbers and associated characters. With

    <input type="number" placeholder="1.0" step="0.01" min="0" max="10" />
    

    0, there is a risk of users accidentally incrementing a number when they're trying to do something else. Additionally, if users try to enter something that's not a number, there's no explicit feedback about what they're doing wrong.

    Also consider using the

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    26 attribute to help users complete forms more quickly and with fewer chances of errors. For example, to enable autofill on a zip code field, set

    <input type="text" inputmode="numeric" pattern="\d*" />
    

    27.