1

こんにちは、Java サーバー ページで動的にチェック ボックスを使用して属性値を取得しています。しかし、私の値がnullの場合、relもアンカータグに表示されないようにしたいです。どうすればこれを達成できますか

私のコードは

<% String relAttribute = properties.get("./relAttribute","false");
String relAttributeValue=relAttribute.equals("true")?"nofollow":"";%>
<a class="play" title="Play video" target="_top" href="<%=appURL%>" rel="<%=relAttributeValue%>" >
4

1 に答える 1

0

JSTL で属性を確認し、コンテンツをc:ifタグの本文に配置できます

<c:if test="${relAttribute is not empty)">
于 2013-10-21T08:21:26.717 に答える