这让我感到困惑,为什么这不起作用? 我有一组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;
我复制代码:
var newValue = $("#v3_configuration_parameter_value_prototype").clone();
&#13;
$(newValue).find("span[id='to_box']").style.display = 'inline';
&#13;