symfony jquery原型动态表

时间:2012-05-16 08:29:51

标签: php javascript jquery symfony

我正在尝试实现一个动态表单,可以添加\ remove字段(现在添加因为它不起作用)。我正在使用Symfony 2.0.13,并按照Here上的指南进行操作 但结果是我无法获得

<a href="#" class="add_tag_link">Add a tag</a>

在渲染的html中,您可以看到Here #2

有人有线索吗?

1 个答案:

答案 0 :(得分:1)

只需将脚本更改为

即可
jQuery(document).ready(function() {

 // Get the div that holds the collection of tags
var collectionHolder = $('ul.tags');

// setup an "add a tag" link
var $addTagLink = $('<a href="#" class="add_tag_link">Add a tag</a>');
var $newLinkLi = $('<li></li>').append($addTagLink);


    // add the "add a tag" anchor and li to the tags ul
    collectionHolder.append($newLinkLi);

    $addTagLink.on('click', function(e) {
        // prevent the link from creating a "#" on the URL
        e.preventDefault();

        // add a new tag form (see next code block)
        addTagForm(collectionHolder, $newLinkLi);
    });
});

这将有效...