本帖最后由 Godream 于 2013-8-8 18:48 编辑
程序:问题在程序中。。。。
- <html >
- <head>
- <style type="text/css">
- table td{
- border:#03F 1px solid;
- width:100px;
- }
- </style>
- <script type="text/javascript">
- function check(node)
- {
- alert(node.childNodes[0].nodeName); //结果是input
- node.chiledNodes[0].checked=true; //我想选择单元格的时候就让checkbox被选中,但是我这样写总是报错
- //错误提示:无法获取未定义或 null 引用的属性“0” 求解?????
- }
- </script>
- </head>
- <body>
- <table>
- <tr>
- <td onclick="check(this)"><input type="checkbox" /></td>
- <td>选择</td>
- </tr>
- </table>
- </body>
- </html>
复制代码 |