Сообщение от розовый слоник
|
выделение строчек в таблице
|
Сообщение от розовый слоник
|
можно же сделать с nextSibling
|
Сообщение от розовый слоник
|
если кто то знает еще варианты пишите
|
Таки пишу...
<html>
<head>
<title></title>
<style type="text/css">
</style>
<script>
function Go() {
var o=document.getElementById('test'),i
o=o.getElementsByTagName('input')
for (i=0; i<o.length; i++) {
if (o[i].type=='checkbox') {
o[i].checked=true
}
}
}
</script>
</head>
<body>
<table id='test'>
<tr>
<td><input type='checkbox' /></td>
</tr>
<tr>
<td><input type='checkbox' /></td>
</tr>
<tr>
<td><input type='checkbox' /></td>
</tr>
</table>
<input type='button' value='Go' onclick='Go()' />
</body>
</html>