我正在尝试添加表格行的数据原型选项。但是symfony提供的默认代码片段是使用标签,因为新附加的元素使用
jQuery(document).ready(function() {
jQuery('#add').click(function(e) {
e.preventDefault();
var list = jQuery('#fields-list');
// grab the prototype template
var newWidget = list.attr('data-prototype');
newWidget = newWidget.replace(/__name__/g, count);
count++;
// create a new list element and add it to the list
var newLi = jQuery('<tr></tr>').html(newWidget);
newLi.appendTo(list);
});
})