问题标签 [show-hide]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
3014 浏览

perl - 在 Perl/Tk 中隐藏窗口并再次显示,包括。所有小部件

我想将主窗口隐藏一段时间,然后再次显示。例子:

使用上面的代码,主窗口将重新出现,但没有显示任何小部件。我该怎么做才能让一切看起来与隐藏之前完全一样?

任何提示表示赞赏。

0 投票
2 回答
3665 浏览

jquery - 使用jquery隐藏动态添加的div

下面的 jquery 代码将在页面加载时隐藏以 -value-wrapper 结尾的 div。我的问题是,“添加更多值”按钮将附加另一行(数字增加)。当它出现时,所有的 div 都会显示出来。有没有办法把原来的隐藏起来,把新的也隐藏起来?

html 标记如下所示:

执行初始隐藏的代码如下:

0 投票
2 回答
290 浏览

jquery - 当一个对象在 jQuery 中被隐藏时,周围的元素会对齐到新的位置。我怎样才能让他们动画到新的位置?

我有一个清单,比如说,20 项。它们中的每一个都是 3 列中的框,类似于网格格式。

网格上方是允许您显示和隐藏列表中不同项目的选项,具体取决于您要查找的内容。

当用户隐藏特定的列表项时,它们会淡出,所有其他项都会卡入它们的新位置。

在平滑淡入淡出效果之后,捕捉动作看起来不太好。他们是一种使元素滑入新位置的方法吗?

谢谢你。

0 投票
1 回答
206 浏览

html - 如何隐藏一个
选项卡的一部分

<div id="hideclass">在 jquery 选项卡中有一些。我希望它可以隐藏或不出现。我希望它可以在我单击某个按钮后出现。我怎么做?

0 投票
2 回答
1889 浏览

javascript - jQuery 显示/隐藏问题

我只是想执行一个非常简单的 jQuery 动作。

我有两个组件:#safety并且#safety-tab a#safety需要在加载时隐藏。当单击 中的链接时#safety-tab,它hide本身slideUp#safety.

这种作品,但#safety框只是在点击时闪烁,不会保持显示:

虽然标记是这样的:

知道我做错了什么吗?

0 投票
2 回答
195 浏览

php - Dynamic hide reveal

I'm working on a blog and I have it set up so you can leave a comment on an entry. I don't like how much vertical space all the comments and the entry form use, so I would like to have a link on each entry that you click and it reveals the entry form and comments. I'm thinking a link that's like "Comments (5)". I see this all the time on other sites but I don't know how to create it myself.

This is some of the HTML for one of the entries:

The displayComments(); function is just the PHP that pulls the comments from the database.

The only thing I can think of is to change the to and use a different ID (such as "comments2","comments3", etc.) for each comments area, then use a javascript function involving document.getElementByID().style.display to alter a different CSS entry for each "commentsX" div. That just seems bloated though, so I'm wondering if there's an easier way to dynamically reveal and hide my form and php function that grabs the comments.

0 投票
4 回答
21506 浏览

jquery - jQuery hide() div 直到完全加载

我正在为我的博客使用标签式精选帖子。内容完全加载后如何实现div#latest-featured意志hide()然后它回来?show()

HTML

示例我有一个带有 id 的 div,#latest-featured我想隐藏它直到内容完全加载,然后在加载完所有内容后将其显示回来。

如何实现上面的当前代码。

0 投票
3 回答
7212 浏览

jquery - Jquery - 显示/隐藏/切换多个 DIV

我希望实现以下目标:

  • 连续显示 5 张图像
  • 单击图像以显示与该图像相关的内容
  • 单击另一个图像以显示该相关内容,并隐藏以前的内容

这是我对图像的标记:

当用户单击图像时,我想直接在其下方显示 DIV 的内容。像这样:

这显然可以通过 jQuery show/hide 实现,但是从我在 Stack Overflow 上查看的所有示例中,我无法获得正确的组合。

非常感谢任何提示,谢谢。

0 投票
1 回答
509 浏览

jquery - 当我使用 jquery 的 .hide 功能来切换某些 div 时,这些 div 会在 div 之后重叠(仅在 ie8 中)

我正在使用 jquery 根据选择框选项隐藏和显示一些 div。当我更改选择框的值时,应该发生的操作会发生,但显示的 div 位于下一个 div 的下方(div 的 ant 被“推”下)。

这是jQuery代码:

以及随后的html:

这些选择框中的第二个不会创建选项,因为它显示的框与它一起显示。有什么想法吗?在 Firefox 3/Chrome 中一切正常...

0 投票
3 回答
5610 浏览

jquery - jQuery slideToggle,显示/隐藏速度

jQuery 中是否有任何内容允许您指定显示/隐藏效果的速度(而不是其持续时间)。

谢谢。