我试图在这个小提琴http://jsfiddle.net/CWaHL/1/中实现相同的行为, 但唯一的区别是我的锚标记是通过 jquery 动态生成的
我的代码
acqIdCounter = grouparr.length;
$("#attendessbox") .append( "
<div id='acquiantancebox"+acqIdCounter+"' class='acquaintance'
style='padding: 1%; float: left; position: relative;'>
<a href='#' class='deleteAcq' onClick='return false;'>
<img style='max-width: 100%' src='images/crosserror.png' /></a><span
style='border: 1px solid #DE4062; width: 100%; border-radius: 4px'>"
+ acquiantancename + "<br />" + acquiantancemob + "
</span>
</div>
和点击事件
$('a.deleteAcq').on('click',function(e){
alert("test");
return false;
});
所以这里有问题,当点击图像'crosserror.png'时,我的锚点击事件没有被触发。谢谢你的回答,不知道我做错了什么!!