怎么用JS写鼠标触发事件

如何用JS写鼠标触发事件
如何能用JS实现鼠标放入“我是第一行第一列”后背景颜色变得深一些。当鼠标离开后变会原来的样式。新人求帮助,附带一行代码。

<table>
  <tr>
      <td>我是第一行第一列</td>
      <td>我是第一行第二列</td>
      <td>我是第一行第三列</td>
  </tr>
</table>
------解决思路----------------------
<table>
  <tr>
      <td onmouseover="this.style.background='#888'" onmouseout="this.style.background=''">我是第一行第一列</td>
      <td onmouseover="this.style.background='#888'" onmouseout="this.style.background=''">我是第一行第二列</td>
      <td onmouseover="this.style.background='#888'" onmouseout="this.style.background=''">我是第一行第三列</td>
  </tr>
</table>