jQuery淡入div内的内容
嘿,到目前为止,我拥有这个功能,它可以让我的页脚始终处于打开状态,但是我希望页脚的内容淡出,并且新内容在触发时淡入。 我不能为我的生活工作,请帮助! - 谢谢
$(document).ready(function() {
$('#footertab').toggle(function() {
$('#footer').animate({
bottom: '-=120'
}, 1000);
},function() {
$('#footer').animate({
bottom: '+=120'
}, 1000);
})
});
使用children()函数:
$("#footer").children().fadeOut();
您可能需要查看jQuery选择器的第二个参数 - “Selector Context”,它是在上下文中搜索元素的绝佳简写。
以下内容将在包含在点击div中的span上添加一个“bar”类:
$('div.foo').click(function() {
$('span', this).addClass('bar');
});
(来自api文档)
在内部,选择器上下文是用.find()方法实现的,所以$('span',this)等价于$(this).find('span')。
进一步阅读..