是否可以将图像添加到带有类的div中,例如当我单击.img123(img class)插入.div123(div class)时。
使用append,我单击的次数是添加的次数,我只需要一次。它不是与类。

$("#theDiv").append("img id='theImg' src='theImg.png'/>");


有没有类似的功能

('.img123').click(function() {
     $('.img123'). adding image only one time into ('.div123');
});

最佳答案

使用.one()将处理程序附加到元素的事件。对于每种事件类型,每个元素最多只能执行一次处理程序。尝试这个:

$('.img123').one(function() {
    //enter code here
});

09-20 11:13