|
|
|
|
для: D.A.N_visator
(19.02.2007 в 21:14)
|
|
<script>
var x;
function f(t)
{
if(x==t)return;
if(x)x.checked=false;
x=t;
}
</script>
<input type="checkbox" onclick="f(this)">
<input type="checkbox" onclick="f(this)">
<input type="checkbox" onclick="f(this)">
|
или так
<script>
var x;
onload=function(){x=document.getElementById('chk')}
function f(t)
{
if(x)
{
t.checked=true;
if(x==t)return;
x.checked=false;
x=t;
}
else
{
t.checked?t.checked=false:t.checked=true;
}
}
</script>
<input type="checkbox" onclick="f(this)" checked="true" id="chk">
<input type="checkbox" onclick="f(this)">
<input type="checkbox" onclick="f(this)">
|
| |
|
|