鼠标悬停在特定 div 上时需要水平菜单选项

发布于 2024-12-07 02:35:22 字数 313 浏览 0 评论 0 原文

我的要求是在段落末尾制作一个水平菜单,鼠标悬停时应出现菜单

将鼠标悬停在上面时应该显示一个选项来添加这样的项目

打开单击添加选项,应该会出现菜单像这样

在此处输入图像描述

请建议任何用于此功能的 jQuery 或 javascript 插件。除了编写自定义脚本之外,我更喜欢使用插件。

My requirement is to make a horizontal menu in the end of a paragraph where on mouseover a menu should appear

This is the paragraph where the menu is required at its end

On mouse over it should show an option to add an item like this

enter image description here

On clicking the add option the menu should appear like this

enter image description here

Please suggest any jQuery or javascript plugin for this functionality. My preference is a plugin for this other than writing custom script.

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

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

发布评论

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

评论(2

最近可好 2024-12-14 02:35:22

这是我所拥有的: http://jsfiddle.net/cbARJ/4/

我没有您的在此处添加按钮有这样的背景,因此您需要添加它。

Here is what I have: http://jsfiddle.net/cbARJ/4/

I don't have such background for your Add here buttons, so you will need to add it.

我很OK 2024-12-14 02:35:22

简单的。

编辑:鼠标悬停在段落上?

CSS:

p #add_link { display:none }
p:hover #add_link { display: block }
#links { display:none }

JS:

$('p #add_link').click(function() {
    $(this).parent().append($('#links').html()); // Or anything else
})

Simple.

EDIT: On mouse over for paragraph?

CSS:

p #add_link { display:none }
p:hover #add_link { display: block }
#links { display:none }

JS:

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