0

xslにあるラジオボタンがチェック されているかどうかを表示<tags>したいと思います。<text><form>

ここに私のxmlがあります:

<global>
    <informations>
        <title>document 1</title>
        <text>This is text of doc 1</text>
        <tags>tag01</tags>
    </informations>
    <informations>
        <title>document 2</title>
        <text>This is text of doc 2</text>
        <tags>tag02</tags>
    </informations>
</global>

そして、ここで私のxsl(HTML出力メソッドを使用):

<xsl:template match="/">

    <form><input type="radio">here</input><input type="radio">and here !</input></form>

    <xsl:for-each select="//informations">
    <div>
        <h2><xsl:value-of select="title"/></h2>
        <p><xsl:value-of select="text"/></p>
        <tag><xsl:value-of select="tags"/></tag>
    </div>
</xsl:template>

ご協力いただきありがとうございます !

4

1 に答える 1

0

変化する

<p><xsl:value-of select="text"/></p>

<p class="hideableText"><xsl:value-of select="text"/></p>

変化する

<tag><xsl:value-of select="tags"/></tag>

<span class="hideableTags"><tag><xsl:value-of select="tags"/></tag></span>

チェックボックス onClick は、checkBox の状態をチェックし、要素を非表示または表示する必要があります。

例 (jQuery を使用):

$('p.hideableText').hide();

$('p.hideableText').show();

于 2013-05-30T16:34:10.200 に答える