鼠标悬停时显示删除按钮,删除后删除 li 或 div

发布于 2024-10-09 09:46:13 字数 384 浏览 2 评论 0原文

在 php 代码中,一些英文单词从数据库(postgres)填充并放入 li 中。 我需要的是每个 li 应该有删除按钮,该按钮在加载期间隐藏。当鼠标悬停时,该图像应该可见。

之后,将使用ajax在数据库端执行删除操作,并且该li将被删除。(没有问题,因为我已经编码了)。

我浏览了这个 链接,但不仅仅是按钮单击事件整个 li 块被触发。我不想要这个,因为将来我会添加更多按钮,如编辑、垃圾邮件之类的。

当您将鼠标悬停在您所做的评论上时,可以看到同样的情况,并且删除图标将出现在 stackoverflow 中。

In php code some english words are populating from database (postgres) and put into li.
What I need is each li should have delete button which is hidden during load. When mouse is hover that image should be visible.

After that, delete operation will be performed on database side using ajax and that li will be removed.(no problem with it as I already coded).

I gone though this link, but instead of only button click event is fired for whole li block.I don't want this because in future I will add more button like edit,spam like that.

Same thing can be seen when you hover on comment you have made and delete icon will appear in stackoverflow.

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

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

发布评论

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

评论(1

淡淡の花香 2024-10-16 09:46:13

jQuery 将拯救你的日子。

<li>words <img src="delete.jpg" style="display:none;"/></li>

$('li').mouseover(function(event)
{
   $(this).find('img').show();
});

$('li').mouseout(function(event)
{
   $(this).find('img').hide();
});

jQuery will save your day.

<li>words <img src="delete.jpg" style="display:none;"/></li>

$('li').mouseover(function(event)
{
   $(this).find('img').show();
});

$('li').mouseout(function(event)
{
   $(this).find('img').hide();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文