<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style>
.mo{background:#00CC33}
</style>
<script src="jquery-1.3.1.js">
</script>
</head><body>
<table width="600" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td bgcolor="#990000"><table width="600" border="0" cellspacing="0" cellpadding="0" id="tb1">
      <tr>
        <td width="100">dsfsd </td>
        <td width="100">sdfsdf</td>
        <td width="100">ewrwer</td>
        <td width="100">pooowe</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table></td>
  </tr>
</table>
<script>
$(#tb1 td).mouseover(function()
{
$(this).addClass("mo");
}
)</script>
</body>
</html>我想给每个单元格添加mouseover方法,鼠标移上去就变背景色但我用了什么都没发生,是不是$(#tb1 td).mouseover 不能对所有后代这么表述??