如何在给定的代码中附加鼠标悬停事件?

发布于 2024-11-28 23:43:55 字数 529 浏览 1 评论 0原文

我正在尝试使用 http://demo.tutorialzine.com/2011 /06/beautiful-portfolio-html5-jquery/ 有一个教程页面@ http://tutorialzine.com/2011/06/beautiful-portfolio-html5-jquery/

我想添加鼠标悬停事件或单击事件,但我的代码不起作用。

$("ul#stage li").click(function() {
    alert("Over")

});

我在文档就绪功能中添加了该事件,但不起作用。请帮忙。我为“悬停”事件尝试了类似的代码。

I am trying to use http://demo.tutorialzine.com/2011/06/beautiful-portfolio-html5-jquery/ which is having a tutorial page @ http://tutorialzine.com/2011/06/beautiful-portfolio-html5-jquery/

I want to add mouse over event or click event, but my code is not working.

$("ul#stage li").click(function() {
    alert("Over")

});

I added the event in document ready function, but not working. Please help. I tried similar code for 'hover' event.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沫尐诺 2024-12-05 23:43:55
$("ul#stage li").live('click', function() {
    alert("Over")

});

或对于这两个事件

$("ul#stage li").live({
  click: function() {
    // do something on click
  },
  mouseover: function() {
    // do something on mouseover
  }
});
$("ul#stage li").live('click', function() {
    alert("Over")

});

or for both events

$("ul#stage li").live({
  click: function() {
    // do something on click
  },
  mouseover: function() {
    // do something on mouseover
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文