我在 xslt 中有一个代码,用于使用按钮选择两个值。我需要检查值并将相应的按钮设置为活动状态。这是我的代码
<ul class="switch">
<li class="private-btn">
<xsl:if test="library:RequestQueryString('at') = 'privat'">
here i need the active btn code
</xsl:if>
<input type="button" class="Privat" value="Privat"></input>
</li>
<li class="business-btn">
<xsl:if test="library:RequestQueryString('at') = 'Erhverv'">
here i need the active btn code
</xsl:if>
<input type="button" class="Privat" value="Erhverv"></input>
</li>
</ul>
有人可以帮忙吗?