我有2个点击事件.一个附加一个包含另一个点击事件的IMG.这不明显.我知道我必须使用jQuery的.ON,但是我无法弄清楚如何和在哪里.
我的代码:
$( document ).ready(function() { // The one below (.choimh) isn't triggered anymore $('.choimg').click(function(){ }); // Switch to chosen color $('.color').click(function(){ $(".thumbs").append('<a href="#"><img id="image'+u+'" class="choimg" src="/img/products/mini/'+colnumber+'-'+ i + '.jpg" />'); }); });
.color div与.choimg完全不同.
我只是无法弄清楚如何使用.ON.
解决方法
它曾经是做这种事情的活着或委托的功能.现在你可以这样做:
$(document).on('click','.choimg',function(e) { //do whatever });