使用id在元素中查找span

时间:2016-12-08 22:09:06

标签: jquery html find clone

这让我感到困惑,为什么这不起作用? 我有一组HTML,我在一个页面中多次克隆,它看起来像这样:



<span id="v3_configuration_parameter_value_prototype" class="configurationParameterValue" style="display: none;">
    <input type="hidden" name="configurationParameterValues_id" />

    <span id="v3_0label" style="display:none;"><label>Signed Integer From</label></span>
    <span id="v3_1label" style="display:none;"><label>Unsigned Integer From</label></span>
    <span id="to_box" style="display:inline;">
        <label>To</label>
            <input type="text" name="configurationParameterValues_to" size="3" />
    </span>
    <input type="hidden" name="configurationParameters_type" value="0" />
       <a onclick="remove_configuration_parameter_value(this);">Remove</a>
    <br />
</span>
&#13;
&#13;
&#13;

我复制代码:

&#13;
&#13;
var newValue = $("#v3_configuration_parameter_value_prototype").clone();
&#13;
&#13;
&#13; 但是当我尝试使用这一行来引用它来隐藏/取消隐藏它时,它无法说它无法找到它。

&#13;
&#13;
$(newValue).find("span[id='to_box']").style.display = 'inline';
&#13;
&#13;
&#13; 我在将它添加到会有重复项的页面之前设置它,所以我需要在newValue代码中设置它。

0 个答案:

没有答案