Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以这完全是一个菜鸟问题,但我试图在 aspx 文件中使用 VB 在行尾添加一个类,但进展不顺利。我究竟做错了什么?
<div class="compare-item-wrapper<%If (n1) Mod 4 = 0 Then " last","" %>">
我收到语法错误。谢谢您的帮助。
您可以使用该If函数进行表达式:
If
<div class="compare-item-wrapper<%= If(n1 Mod 4 = 0, " last", "") %>">
或End If在If语句中使用和文字值:
End If
<div class="compare-item-wrapper<% If n1 Mod 4 = 0 Then %> last<% End If %>">