gpt4 book ai didi

javascript - XSLT 如果单击复选框则禁用文本框

转载 作者:行者123 更新时间:2023-12-02 20:11:22 25 4
gpt4 key购买 nike

XSLT 如果单击复选框则禁用文本框

 <TD colspan="2">
<input type="checkbox" name="City$store1$" onclick="SetBonPerAcre(this)" TabIndex="19">
<xsl:if test="City/@store1=1">

<xsl:attribute name="checked"></xsl:attribute>
</xsl:if>
</input>fee&#160;&#160;&#160;&#160;&#160;&#160;
<input type="text" id="1001" maxlength="100" value="{City/@RE}"></input>
<input type="text" id="1002" maxlength="100" value="{City/@E}"></input>
</TD>

如果选中复选框,我想禁用 ID 为 1001 和 1002 的文本框

最佳答案

使用您当前为复选框实现的相同测试,但在输入中添加“禁用”属性:

<input type="text" id="1001" maxlength="100" value="{City/@RE}">            
<xsl:if test="City/@store1=1">
<xsl:attribute name="disabled">true</xsl:attribute>
</xsl:if>
</input>
<input type="text" id="1002" maxlength="100" value="{City/@E}">
<xsl:if test="City/@store1=1">
<xsl:attribute name="disabled">true</xsl:attribute>
</xsl:if>
</input>

关于javascript - XSLT 如果单击复选框则禁用文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6922559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com