// Back to top
$('a.top').click(function () {
$(document.body).animate({scrollTop:0}, 800);
returnfalse;
});
<!-- Create an anchor tag --><a class="top" href="#">Back to top</a>
// Close all panels
$('#accordion').find('.content').hide();
// Accordion
$('#accordion').find('.accordion-header').click(function () {
var next = $(this).next();
next.slideToggle('fast');
$('.content').not(next).slideUp('fast');
returnfalse;
});
10.让两个 DIV 高度相同
有时你需要让两个 div 高度相同,而不管它们里面的内容多少。可以使用下面的代码片段:
1
2
3
4
5
6
7
8
9
var $columns = $('.column');
var height =0;
$columns.each(function () {
if ($(this).height() > height) {
height = $(this).height();
}
});
$columns.height(height);