默认条件
alt text http://shup.com/Shup/330969/1104593215-My-Desktop.png
点击站点地图链接后
点击Sitemap链接后,如何编写HTML以获得Sitemap树后的页脚链接?
alt text http://shup.com/Shup/330973/110459357-My-Desktop.png
最佳答案
jQuery show和hide是您的朋友。或者,更简单的解决方案是使用toggle!
$('#show_hide').click(function(){
$("#links").toggle();
return false;
});