HTML/CSS/Form Attributes/type button

Материал из Web эксперт
Версия от 11:17, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"type" determines the functionality of the "button" element

   <source lang="html4strict">
   

<HTML> <BODY> <button id="myButton" type="button" onclick="alert("hello!");">Button Text</button> </BODY> </HTML>


     </source>