gpt4 book ai didi

javascript - jquery老代码,错在哪里?

转载 作者:行者123 更新时间:2023-12-03 10:13:10 25 4
gpt4 key购买 nike

我找到了这个页面:

Page

这正是我正在寻找的。现在我复制了代码,但它不起作用。

$(function() {



var scntDiv = $('#p_scents');
var i = $('#p_scents p').size() + 1;

$('#addScnt').on('click', function() {
$('<p><label for="p_scnts"><input type="text" id="p_scnt" size="20" name="p_scnt_' + i +'" value="" placeholder="Input Value" /></label> <a href="#" id="remScnt">Remove</a></p>').appendTo(scntDiv);
i++;
return false;
});

$('#remScnt').on('click', function() {
if( i > 2 ) {
$(this).parents('p').remove();
i--;
}
return false;
});
});
<h2><a href="#" id="addScnt">Add Another Input Box</a></h2>

<div id="p_scents">
<p>
<label for="p_scnts"><input type="text" id="p_scnt" size="20" name="p_scnt" value="" placeholder="Input Value" /></label>
</p>
</div>

我将.live()事件(?)更改为.on(),但我无法删除输入字段。也许你们中的一些人看到了这个错误,因为我是 jquery 新手。

最佳答案

该元素在加载时不存在,因此必须对其进行委托(delegate)

  `$(selector).on('click', 'newelement', function() . . .

对于动态创建的项目,还要使用类而不是 ID,否则您将重复 ID。

工作中fiddle

关于javascript - jquery老代码,错在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30016531/

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