tbody的有趣问题

tbody标签很有意思,即使你并不去添加它,浏览器也会自动帮你补上。

==============================

<style type="text/css">
tbody{color:red}
</style>
<table>
<tr id="a"><td>123</td></tr>
</table>
<script type="text/javascript">
alert(document.getElementById("a").parentNode.tagName);
</script>

==============================

没错,弹窗弹的是tbody,而123的颜色是红色。IE6、7、8,firefox和chrome都是如此。

原文地址:https://www.cnblogs.com/cly84920/p/4426776.html