ボタンを使用して 2 つの値を選択するための 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>
誰でも助けることができますか?