本文主要是介绍underscore 模版中 if 语句使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
语法:
<%if(xxx){%>
<div>xxx</div>
<%}%>
实例:
<div class="fan_bot"><div class="fabo_left"><%=data_source.pv%>浏览</div><%if(data.bottom.user==undefined){%> <div class="fabo_right"><div style="border:1px solid <%=data.bottom.tag.border_color%>;color:<%=data.bottom.tag.text_color%>;padding:2px 2px; font-size: 12px;"><%=data.bottom.tag.text%></div></div><%}%> <%if(data.bottom.user!==undefined){%> <div class="fabo_right"><span class="name"><%=data.bottom.user.name%></span><img src="<%=data.bottom.user.logo%>" alt=""></div><%}%> <div style="clear: both"></div> </div>
效果
这篇关于underscore 模版中 if 语句使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!