gpt4 book ai didi

javascript - Chained or Dependent Select Zend_Form jQuery 删除或替换表单元素?

转载 作者:行者123 更新时间:2023-11-29 10:16:32 25 4
gpt4 key购买 nike

我一直在使用 Zend Framework 1 创建一个依赖/链接的 Zend_Form。

当一个 Zend_Form_element_Select 另一个 Zend_Form_Element_Select 被添加到具有依赖于第一个选择值的正确字段的表单时。

所以我添加了一个新的 Select :

$("#city-label").before(data);

这将在城市标签之前插入新的选择。

当第一个 select 的值再次改变时,问题就出现了。然后将一个新的 Select 添加到窗体中。理想情况下,我希望旧的 satellite element 即标签和要删除的选择。

<dt id="satellite-label">
<label for="satellite" class="optional">Satelite</label>
</dt>
<dd class="ui-select">
<select name="satellite" id="satellite">
<option value="--Select One--" label="--Select One--">--Select One--</option>
<option value="5" label="Alex">Alex</option>
<option value="6" label="Patro">patro</option>
<option value="7" label="Zozo ">Zozo</option>
</select></dd>
<dt id="city-label"><label for="city" class="optional">City</label></dt>

然后用新元素替换。

最佳答案

在您的 AJAX 成功中试试这个:

$("#satellite-label").remove();
$("#satellite").parent().remove();

关于javascript - Chained or Dependent Select Zend_Form jQuery 删除或替换表单元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20260600/

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