日期:2014-05-17 浏览次数:20660 次
<div class="userPhoto"> <a href="#" namecard="true" uid="${user.uid}"> <c:choose> <c:when test="${empty user.mugshot256}"> <img alt="" src="${RESOUCE_STATIC_URL}/images/avatar_64_64.png"> </c:when> <c:otherwise> <img alt="" src="${RESOUCE_UPLOAD_URL}/${user.mugshot256}"> <c:choose> <c:when test="${user.beenFollowed}"> <c:set var = "styleFollow" value="display:none" /> </c:when> <c:otherwise> <c:set var = "styleFollow" value="" /> </c:otherwise> </c:choose> <a class="follow-action blue-button-addnew" title="加关注" style="${styleFollow}" uid="${user.uid}" ><span class="addnew">+</span></a> </c:otherwise> </c:choose> </a> </div>
<div class="userPhoto"> <a href="#" namecard="true" uid="${user.uid}"> <c:choose> <c:when test="${empty user.mugshot256}"> <img alt="" src="${RESOUCE_STATIC_URL}/images/avatar_64_64.png"> </c:when> <c:otherwise> <img alt="" src="${RESOUCE_UPLOAD_URL}/${user.mugshot256}"> <c:if test="!${user.beenFollowed}"> <a class="follow-action blue-button-addnew" title="加关注" style="${styleFollow}" uid="${user.uid}" ><span class="addnew">+</span></a> </c:if> </c:otherwise> </c:choose> </a>