checkbox и onClick
Доброго времени суток, подскажите, что не так сделал?
<input type="checkbox" onClick="document.getElementById('gruzsep').disabled = (this.checked) ? false : true ;" checked="true"/>
|
Цитата:
|
Цитата:
<li><input type="checkbox" onClick="document.getElementById('gruzsep').disabled=(this.checked)?false:true;" id="gruzchk" checked="true"/>Разделитель 1<br/><input type="text" id="gruzsep" value=","/></li>
|
Хочу что бы по нажатию на checkbox проверялся сам чекбокс на статус checked и делал следующий input активным или на оборот.
Но хром на меня обижается: Цитата:
|
<input type="checkbox" onchange="this.nextElementSibling.disabled = this.checked;"> <input type="text"> |
Lemme,
Хорошо, если делаю реверсию!? Вместо this.checked подойдет this.unchecked ?? |
Цитата:
|
Цитата:
<html> <head> </head> <body> <input type="checkbox" onchange="this.nextElementSibling.disabled = this.checked;"> <input type="text"> <input type="checkbox" onchange="this.nextElementSibling.disabled = !this.checked" checked = "true"> <input type="text"> </body> </html> |
Цитата:
|
Цитата:
|
| Часовой пояс GMT +3, время: 07:36. |