Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery 添加一行新的文本框。
即使我打开开发者工具时没有错误,代码也不会工作。
单击此处查看我所做的示例。
我正在使用:
$(document.createElement('tr')).attr('id', 'textbox_holder_' + family_rel_counter);
您的选择器错误
$('add_new_line_fam_rel')
应该
$('#add_new_line_fam_rel')
因为是身份证
http://jsfiddle.net/sEQXu/