HTML/CSS/Basic Attributes/disabled — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:16, 26 мая 2010
"disabled" sets the enabled state of an element
<HTML>
<BODY>
<form>
<input type="button" value="This button is enabled">
<input disabled=true type="button" value="This button is disabled">
<input type="button" value="another button">
</form>
</BODY>
</HTML>