锘縡unction showFriendLinkList(id) { $(".friendLinkList").each(function () { if ($(this).attr("id") == id) { if ($(this).is(":visible")) { $(this).slideUp(); } else { $(this).slideDown(); } } else { $(this).slideUp(); } }); }