Сообщение от Vudik
|
Добрый день подскажите как применить css к подкласу disabled
|
<html><head><title></title>
<style>
.disabled {background: #fff;}
.activ {background: #FFFF00;}
.activ:hover {background: #00FF00;}
</style>
<script>
function a() {
if (document.getElementById("tb1").checked) {
document.getElementById("tbnum").disabled = false;
document.getElementById("tbnum").className = 'activ';
} else {
document.getElementById("tbnum").disabled = true;
document.getElementById("tbnum").className = 'disabled';
}
}
</script>
</head>
<body>
<input type="checkbox" value="asd" id="tb1" onClick="a()">
<input class="activ" type="button" value="Продолжить" id="tbnum" onclick="document.location='anketa.html'" />
<script>window.onload = a;</script>
</body></html>