Tag input

<form action='/search' name='searchform'>
<input name='q' type='text' value=''/>
<input type='submit' value='Go'/>
</form>

Tag <input> digunakan untuk memilih informasi pengguna. Kolom input bervariasi, tergantung pada tipe attribute seperti kolom teks, kotak centang, kolom password, tombol radio dll.


Ini ada beberapa contoh yang Nano tahu :


<input type="text" />

atau

<input type="password" />
<input type="file" />
<input type="checkbox" />
<input type="radio" />
<input type="reset" />
<input type="submit" />


Anda juga bisa memasukan tambahannya :


maxlength

Digunakan untuk membatasi huruf yang ada. untuk type="text" atau type="password"

<input type="text" maxlength="5" />

coba saja, pasti hurufnya tidak bisa lebih dari lima.


name

Digunakan untuk menetapkan nama elemen input.

iseng : <input type="text" name="iseng" /> iseng :

Terserah anda, hehehehe.


value

Ini biasanya akan muncul pada sebuah elemen input.

<input type="text" value="cari" />

atau

<input type="submit" value="kirim" />

readonly

Setiap yang sudah muncul tidak bisa dihapus lagi. Bisa dibilang ini membuat permanent.

<input type="text" value="Nano Yulianto" readonly="readonly"/>

Coba hapus nama saya, bisa atau tidak...


size

Kalau ini ukuran.

<input type="text" size="40" />

0 comments:


Posting Komentar


Creative Commons License
Tag input by Nano Yulianto is licensed under a Creative Commons Attribution 3.0 Unported License.
Based on a work at http://nanoyulianto.blogspot.com/2010/11/tag-input.html.
Permissions beyond the scope of this license may be available at http://nanoyulianto.blogspot.com/.