【发布时间】:2013-12-15 12:02:50
【问题描述】:
如何让内容部分在导航点击时淡入淡出? 然后我怎样才能让一个特殊的页面在加入页面时加载?
代码:
$(document).ready(function(){
$("a").click(function(e){
e.preventDefault();
$('#content').children('section').hide();
$('#' + $(this).attr('href')).show();
});
});
【问题讨论】:
标签: jquery css menu navigation fade