xml ファイルから動的にアンケートを生成しようとしています。問題は、他の回答に応じて、いくつかの質問が表示されたり、表示されなかったりすることです。この依存関係を html ファイルに挿入する方法がわかりません。クリック時にJavaScript関数を挿入するだけで十分だと思いますが、実際にはその場合に表示する必要がある質問を取得できません。
これは私がこれまでに持っているコードです:
XML :
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl"?>
<questions>
<question>
<number/>
<title>Which description best suits</title>
<options>
<option>
<checkbox> String 1</checkbox>
<questions/>
</option>
<option>
<checkbox> string 2 </checkbox>
<questions>
<question>
<number/>
<title> Hidden question ?</title>
<options>
<option>
<checkbox> Hidden string 1</checkbox>
<questions/>
</option>
<option>
<checkbox> Hidden string 2 </checkbox>
</option>
</options>
</question>
</questions>
</option>
</options>
</question>
</questions>
XSLT :
<xsl:stylesheet version = '1.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
<xsl:template match="/questions/question">
<div id="question">
<h6> <xsl:value-of select="//title"/> </h6>
<xsl:apply-templates select="child::options"/>
</div>
</xsl:template>
<xsl:template match="*/questions/question">
<div id="question" style="visibility:hidden;">
<h6> <xsl:value-of select="child::title"/> </h6>
<xsl:apply-templates select="child::options"/>
</div>
</xsl:template>
<xsl:template match="options">
<div id="options">
<xsl:apply-templates select="child::option" />
</div>
</xsl:template>
<xsl:template match="checkbox">
<input type="checkbox">
<xsl:value-of select="."/>
</input>
</xsl:template>
<xsl:template match="textinput">
<p> <xsl:value-of select="."/> </p>
<input type="input">
</input>
</xsl:template>
<xsl:template match="checkboxInput">
<input type="checkbox"><xsl:value-of select="."/></input>
<input type="input"></input>
</xsl:template>
</xsl:stylesheet>