我有以下根据用户选择产品而创建的 xsl 面板。用户最多可以选择 99 个,并且将生成 99 个以下代码的精确面板。当从下拉列表中选择“其他”时,我有 jQuery 代码来操作(显示/隐藏)输入字段。
基本上我试图在我的javascript中获取xsl id,这样我就可以将代码应用到我的id,这将相应地增加。
非常感谢任何帮助。这些错误与 javacript 中的非法参数有关。
<xsl:attribute name="id">panel22_<xsl:value-of select="@id"/></xsl:attribute>
<table border="0" width="100%" height="100%" bgcolor="lightyellow" class="inline"
<script type="text/javascript">
var one = document.getElementById('<xsl:value-of select="@id"/>')
$('#producttypes' + '_' + one).change(function()
{
if($('#otherprodtype').is(':selected'))
{
$('#myotherbox').show();
}
else
{
if($('#myotherbox').is(':visible'))
{
$('#myotherbox').hide();
}
}
});;
</script>
<tr>
<td class="Label">Product Type</td>
<td class="field">
<select name="producttypes" id="producttypes_<xsl:value-of select="@id"/>">
<option value="domguar">
<xsl:if test="producttypes/option[@id='domguar']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Domestic Guarantee</option>
<option value="indemnity">
<xsl:if test="producttypes/option[@id='indemnity']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Indemnity</option>
<option value="domcontbond">
<xsl:if test="producttypes/option[@id='domcontbond']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Domestic Contract Bond</option>
<option value="perfbond">
<xsl:if test="producttypes/option[@id='perfbond']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Performance Bond</option>
<option value="interventionguar">
<xsl:if test="producttypes/option[@id='interventionguar']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Intervention Guarantee</option>
<option value="customsguar">
<xsl:if test="producttypes/option[@id='customsguar']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Customs Guarantee</option>
<option value="vatbond">
<xsl:if test="producttypes/option[@id='vatbond']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>VAT Bond</option>
<option value="otherprodtype" id="otherprodtype_<xsl:value-of select="@id"/>">
<xsl:if test="producttypes/option[@id='otherprodtype']='selected'">
<xsl:attribute name="selected"/>
</xsl:if>Other</option>
</select>
<td class="field" id="myotherbox_<xsl:value-of select="@id"/>" style="display:none;">
<input class="amdInputText" type="text" id="otherprodtypebox" value="" style="display:none;">
<xsl:attribute name="value"><xsl:value-of select="otherprodtypebox"></xsl:value-of></xsl:attribute></input>
</td>
</td>
</tr>