我有如下一個HTML表單一個jQuery生成的字段:刪除不工作
<div class="form_row">Add Note<input type="checkbox" name="add_note" id="add_note"></div>
<div class="form_row" id="addDiv" style="display:none;">
<div class="form_row">
<h4><a href="#" id="addScnt">Add Another Input Box</a></h4>
<div id="p_scents">
<p>
<label for="p_scnts"><input type="text" size="20" name="p_scnt_1"/></label>
</p>
<div id="new_notes">
</div>
</div>
</div>
和JavaScript是:
$('#add_note').click(function(){
if($("input[type='checkbox'][name='add_note']:checked").length > 0)
{
$('#addDiv').show(500);
}else{
$('#addDiv').hide(200);
}
})
var i = 2;
$('#addScnt').click(function(){
var html = '';
html += '<p>';
html += '<label for="p_scnts"><input type="text" size="20" name="p_scnt_"'+i+'/><a href="#" id="cancel_field">Cancel</a></label>';
html += '</p>';
$('#new_notes').append(html);
i++;
});
$('#cancel_field').click(function(){
alert('Test ')
$(this).parents('p').remove();
});
現在,我的問題是,當我點擊cancel
,它確實沒有做任何事情,既不警告也不移除父分區。代碼有什麼問題?
編輯:
ID必須是唯一的,它可能是你的問題? –
@ A.Wolff用'cancel_field'類嘗試過,結果相同! – Nitish
因爲您需要使用委派。請下一次嘗試發佈更好的代碼縮進;) –