什么是测试属性?

时间:2012-03-20 09:22:37

标签: jsp jstl

在jstl代码中:

<c:if test="${name eq 'OS'}">
            <i>Inside the if statement</i>
        </c:if>

属性test表示什么?

2 个答案:

答案 0 :(得分:1)

你是什么意思表示?它代表if if like this if(name.equals('OS'))

答案 1 :(得分:0)

test 是一个测试条件,用于确定是否应处理正文内容。

喜欢:${name eq 'OS'}如果条件为真则返回true,否则返回false。