私の画像のonclickイベントを作成しようとしていますが、うまくいきません..アラートが表示されません..
$(document).ready(function(){
$('img.closeAttrIcon').click(function(){
alert("ww");
});
});
こんな風にバインドしてみてもしょうがない...
$(document).ready(function(){
$('img.closeAttrIcon').bind('click',function(){
alert("ww");
});
});
このイベント中に html が作成されます。
$('a#btnAddStdntAttr').click(function(){
var newAttr = '<div class="attrParent"><br class="clear"><label></label><input type="text" id="stdntAttributeKey1" maxlength="250" style="width: 13%;" name="stdntAttributeKey1"/>';
newAttr+= '<input type="text" id="stdntAttributeValue1" maxlength="250" style="width: 13%;" name="stdntAttributeValue1"/>';
newAttr+= '<img src="<c:url value="/static/images/closeIcon.png"/>" onclick="removeStdntAttr();" class="closeAttrIcon" alt="Close" title="Close" /></div>';
$(this).after(newAttr);
});
ここで何が間違っているのですか..助けてください..