通过单击另一个div中的图像来显示div(具有样式“display:none”)
我在一个 div 上有 5 个图像(比如产品的缩略图)。我还有另一个带有简要选项卡部分的 div。
我的编码(如下所示):
- 带有 5 张图像的 Div。
- 另一个 Div 有 5 个选项卡部分及其产品详细信息。
- 此外,第二个 div 具有属性
style"display:none"
。我想让它可见以查看其详细 div 部分的单击拇指。
提前致谢。
I have 5 images on a div(like thumb images of products). And I'm having another div with briefed tabbed section.
My coding(like below):
- Div with 5 images.
- Another Div has 5 tabbed section with its product details.
- In addition, second div has property
style"display:none"
. I want make it visible to see the clicked thumb for its detailed div section.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
.show()
和.hide()
切换 'display:none' 显示/隐藏 div。You can use
.show()
and.hide()
to toggle the 'display:none' to show/hide the div.下面是如何执行此操作的示例。
http://jsbin.com/anere3/3/edit
希望这有帮助。
鲍勃
Here is an example of how to do this.
http://jsbin.com/anere3/3/edit
Hope this helps.
Bob
我的回答只能和你的描述一样好。
My answer can only get as good as your description.
我假设您还有一些其他具有特定图像描述的标签,因此您也必须显示/隐藏它们。
I assume you have some other tags that have the specific image descriptions, so you'll have to show/hide them too.