Ultimele tutoriale de dezvoltare web
 

HTML form Attribute


Definiție și utilizare

form atribut specifică una sau mai multe forme elementul aparține.


Se aplică la

form atribut poate fi utilizat pe următoarele elemente:

element Atribut
<button> form
<fieldset> form
<input> form
<keygen> form
<label> form
<meter> form
<object> form
<output> form
<select> form
<textarea> form

Exemple

Button Exemplu

Un buton situat în afara unui form (but still a part of the form) :

<form action="demo_form.asp" method="get" id="form1">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
</form>

<button type="submit" form="form1" value="Submit">Submit</button>
Încearcă - l singur »

Fieldset Exemplu

A <fieldset> Element situat în afara unui formular (but still a part of the form) :

<form action="demo_form.asp" method="get" id="form1">
  What is your favorite color? <input type="text" name="fav_color"><br>
  <input type="submit">
</form>

<fieldset form="form1">
  Name: <input type="text" name="username"><br>
  Email: <input type="text" name="usermail"><br>
</fieldset>
Încearcă - l singur »

Input Exemplu

Un câmp de intrare situată în afara formei HTML (but still a part of the form) :

<form action="demo_form.asp" id="form1">
  First name: <input type="text" name="fname"><br>
  <input type="submit" value="Submit">
</form>

Last name: <input type="text" name="lname" form="form1">
Încearcă - l singur »

Keygen Exemplu

A <keygen> Element situat în afara formei (but still a part of the form) :

<form action="demo_keygen.asp" method="get" id="secureform">
  Username: <input type="text" name="usr_name">
  <input type="submit">
</form>

Encryption: <keygen name="security" form="secureform">
Încearcă - l singur »

Label Exemplu

A <label> Element situat în afara unui formular (but still a part of the form) :

<form action="demo_form.asp" id="form1">
  <input type="radio" name="gender" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form>

<label for="male" form="form1">Male</label>
Încearcă - l singur »

Meter Exemplu

Un <meter> Element situat în afara unui formular (but still a part of the form) :

<form action="demo_form.asp" method="get" id="form1">
  First name: <input type="text" name="fname"><br>
  <input type="submit" value="Submit">
</form>

<meter form="form1" name="x1" min="0" low="40" high="90" max="100" value="95"></meter>
Încearcă - l singur »

Object Exemplu

Un <object> Element situat în afara unui formular (but still a part of the form) :

<form action="demo_form.asp" id="form1">
  First name: <input type="text" name="fname"><br>
  <input type="submit" value="Submit">
</form>

<object data="helloworld.swf" height="400" width="400" form="form1" name="obj1"></object>
Încearcă - l singur »

Output Exemplu

O <output> Element situat în afara unui formular (but still a part of the form) :

<form action="demo_form.asp" id="numform"
oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
<input type="range" id="a" name="a" value="50">100
+<input type="number" id="b" name="b" value="50">
<br><br>
<input type="submit">
</form>

<output form="numform" name="x" for="a b"></output>
Încearcă - l singur »

Select Exemplu

O listă derulantă situată în afara unei forme (but still a part of the form) :

<form action="demo_form.asp" id="carform">
  Firstname:<input type="text" name="fname">
  <input type="submit">
</form>

<select name="carlist" form="carform">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="opel">Opel</option>
  <option value="audi">Audi</option>
</select>
Încearcă - l singur »

Textarea Exemplu

O zonă de text situată în afara unei forme (but still a part of the form) :

<form action="demo_form.asp" id="usrform">
  Name: <input type="text" name="usrname">
  <input type="submit">
</form>

<textarea name="comment" form="usrform">Enter text here...</textarea>
Încearcă - l singur »

Suport pentru browser-

form atribut are următorul suport de browser pentru fiecare element:

Element
button 10.0 Nu sunt acceptate 4 5.1 9.5
fieldset Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate
input 9 Nu sunt acceptate 4 5.1 10.6
keygen da Nu sunt acceptate da 6 da
label da da da da da
meter Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate
object Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate Nu sunt acceptate
output da Nu sunt acceptate da da da
select da Nu sunt acceptate da da da
textarea da Nu sunt acceptate da da da