📜  js 悬停事件 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:13.795000             🧑  作者: Mango

代码示例6
// You can use jQuery

$("p").hover(function(){
  $(this).css("background-color", "yellow");
  }, function(){
  $(this).css("background-color", "pink");
});