上联:no zuo no die why you try
下联:no try no high give me five
横批: let it go。
坑爹bug:
错误写法: <c:if test="${4 > 0 } ">true</c:if> (最后一个大括号后多出一个空格,代码啥都不会输出)
正确写法:
<c:if test="${4 > 0 }">true</c:if> 正确写法 输出结果: true