jsp_EL_判断为null与三目运算符

1.判断是否为null

${empty pageNo ? "null" : "not null"}

2.三目运算符

${pageNo == 'yes' ? "yes" : "no" }  

3.两者结合使用

${empty param.pageNo?1:param.pageNo }


你可能感兴趣的:(jsp)