我正在尝试克隆一个“div”并且所有内部都在其中但是其中一个事件在克隆的div中消失了(我对Web开发很新...所以我“克隆”了在SO上找到的代码) 。
使用以下javascript添加缺少的事件:
var MyClass = document.querySelectorAll(".BtnOptList");
for (var ii = 0; ii < MyClass.length; ii++) {
MyClass[ii].addEventListener('click', H_S_Btns_Func, false);
}
然后,为了克隆div,我使用以下函数:
$('#btnAddFlds').click(function () {
//Count "cloned divs" we currently have
//This will be also used as numeric ID of the new input(s) field(s) (1st have no number)
var DivNum = $('.SDetails').length;
// clone() element and update its id(s)
var newElem2 = $('.SDetails:first').clone().attr('id', function( i, val ) {
return val + DivNum;
});
// manipulate the id values of the input inside the new element
newElem2.find('input,.BtnOptList,.HideIt').each(function(){
$(this).attr('id', function( i, val ) {
return val + '_' + DivNum;
});
});
//Try to add function (DOESN'T WORK)
newElem2.find('.BtnOptList').each().addEventListener('click', H_S_Divs_Func, false);
//I omitted other stuff
});
我已经尝试克隆(true,true)但是没有效果
答案 0 :(得分:1)
这个(newElem2.find('.BtnOptList').each().addEventListener('click', H_S_Divs_Func, false);
)不是你如何使用jQuery的each
。看看https://api.jquery.com/each/
尾翼:
newElem2.find('.BtnOptList').each(function(i,e){e.addEventListener('click', H_S_Divs_Func, false)})
PS:由于你正在使用jQuery,你可以使用它自己的事件方法并将监听器添加到整个列表中:
newElem2.find('.BtnOptList').on('click', H_S_Divs_Func, false)
答案 1 :(得分:-1)