我在我的网站上使用JQuery 1.4.2获得手风琴效果。除一个类别外,其他所有类别这适用于Chome和最近的Firefox,旧版本的Safari和所有Internet Explorer版本,但始于隐藏一切。是否与这些浏览器不兼容或我的代码有问题?
$(document).ready(function() {
$('div.chapter:not(:first)').hide();
$('h2.caption').click(function() {
$('div.chapter:visible').slideUp("slow");
$(this).next().slideDown("slow");
});
return false;
});
显然,章节的内容都在div.chapter内。