当前位置: 代码迷 >> Java Web开发 >> 简单的关于 table中this.parentElement 的有关问题
  详细解决方案

简单的关于 table中this.parentElement 的有关问题

热度:361   发布时间:2016-04-17 12:57:31.0
简单的关于 table中this.parentElement 的问题
<html>
<head> </head>
<body>
<form       name= "a ">      
<table   name= "b ">      
<tr   name= "c "   >      
                                <td   name= "d "   >      
                                            <select     name= "e "     onchange= "xx(this.parentElement.parentElement.parentElement.name) ">
    <option   > 1 </option>
    <option   > 2 </option>
    <option   > 3 </option>
    <option   > 4 </option>

    </select>
                                </td>    
<td> &nbsp; </td>
                                 
                    </tr>      
    <tr> &nbsp; </tr>
            </table>      
    </form>  
  </body>
  <script   language= "javascript ">
  function   xx(a)
  {
      alert(a);
  }
  </script>
</html>
//输出undefined   为什么了?   不是应该输出b么?

------解决方案--------------------
<table>
<tbody>
<tr>
<td>
  相关解决方案