如果你访问......
http://www.noxinnovations.com/portfolio/thecommonwealth/index.html
我目前正在设计该网站,现在点击底部的“点击查询”按钮。为什么当内容滑动时,页面内容的容器底部不会像CSS文件中那样按原样进行100%?我还希望能够再次单击按钮以关闭所有内容。
您可以在此处查看CSS ...
http://www.noxinnovations.com/portfolio/thecommonwealth/style.css
你也可以在这里查看JavaScript / jQuery ......
http://www.noxinnovations.com/portfolio/thecommonwealth/javascript.js
非常感谢, 亚伦
答案 0 :(得分:1)
将您的ACCORDION BUTTON ACTION更改为
//ACCORDION BUTTON ACTION
$('div.inquirebutton').click(function() {
$('div.inquirecontent').slideToggle();
});