简单的鼠标悬停功能

Simple mouseover function

我试图在鼠标悬停在任何按钮上时获取 运行 的功能,然后识别鼠标悬停在哪个按钮上。我已经试过了,但它不起作用:

<script>
  $("button").mouseover function (){
      var buttonID = $(this).attr('id');
      alert (buttonID);
  }
</script>

我在这里错过了什么?

一个括号:

 $("button").mouseover( function (){
     var buttonID = $(this).attr('id');
     alert (buttonID);
 }