jquery toppanel的显示和隐藏
Here is the code for showing and hiding the top panel :
It works fine, but when I implement it on a website is not working properly.
Check out this link to see how it works.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是您的网页 HTML:
您拥有面板内的所有内容,当您这样做时:
您隐藏面板内的所有内容,包括关闭和打开。
This is your webpage HTML:
you have everything inside panel, when you do:
You hide everything inside panel, including the close and open.
在您的网站中,
panel
div 包含所有内容。因此,当您隐藏/slideToggle 面板 div 时,它会显示/隐藏所有内容。纠正你的标记一切应该工作正常。In your website the
panel
div contains everything. So when you hide/slideToggle panel div it is showing/hiding everything. Correct you markup everything should work fine.