为什么 html 输入类型为“数字"?允许在字段中输入字母“e"? [英] Why does the html input with type "number" allow the letter 'e' to be entered in the field?

查看:19
本文介绍了为什么 html 输入类型为“数字"?允许在字段中输入字母“e"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have the following html5 input element:

<input type="number">

Why does this input allow for the character 'e' to be entered in the input field? No other alphabet character is able to be entered (as expected)

Using chrome v. 44.0.2403.107

Example below to see what I mean.

<input type="number">

解决方案

Because that's exactly how the spec says it should work. The number input can accept floating-point numbers, including negative symbols and the e or E character (where the exponent is the number after the e or E):

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

  1. Optionally, the first character may be a "-" character.
  2. One or more characters in the range "0—9".
  3. Optionally, the following parts, in exactly the following order:

    1. a "." character
    2. one or more characters in the range "0—9"

  4. Optionally, the following parts, in exactly the following order:

    1. a "e" character or "E" character
    2. optionally, a "-" character or "+" character
    3. One or more characters in the range "0—9".

这篇关于为什么 html 输入类型为“数字"?允许在字段中输入字母“e"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆