SóProvas


ID
1246516
Banca
UFMT
Órgão
UFMT
Ano
2014
Provas
Disciplina
Programação
Assuntos

Em relação aos recursos de formulário disponíveis na linguagem HTML 5.0, marque V para as afirmativas verdadeiras e F para as falsas.

(   ) O atributo required pode ser utilizado em um elemento input para tornar o preenchimento de um campo obrigatório.
(   ) O atributo expression pode ser utilizado em um elemento input para definir expressões regulares de validação.
(   ) O atributo novalidate pode ser incluído em um elemento form para não efetuar a validação em um formulário.
(   ) Utilizando range como valor de type em um elemento input, obtém-se um controle deslizante para selecionar um valor em um intervalo de valores.

Assinale a sequência correta.

Alternativas
Comentários
  • O atributo expression (PATTERN) pode ser utilizado em um elemento input para definir expressões regulares de validação. 
      

    HTML required Attribute
    The required attribute is a boolean attribute.
    When present, it specifies that an input field must be filled out before submitting the form.

     

    HTML <input> pattern Attribute
    The pattern attribute specifies a regular expression that the <input> element's value is checked against.

     

    HTML novalidate Attribute
    The novalidate attribute is a boolean attribute.
    When present, it specifies that the form-data (input) should not be validated when submitted.
     

    HTML <input type="range">
    The <input type="range"> defines a control for entering a number whose exact value is not important (like a slider control).
    Default range is 0 to 100. 

     

    Fonte: https://www.w3schools.com