我无法在jQuery中访问集合类型单选按钮的值

时间:2019-06-11 15:29:48

标签: javascript jquery symfony4

Symfony 4中的一种基本表单类型,带有“简单字段”(例如TextType ..)和一个CollectionType。

如何在jQuery中访问集合类型单选按钮的值?

要获取“简单字段”的值,请在jQuery中进行:

$('#divfield').click( function() { ... }  );

没问题

但具有collectionType字段的同一件事:

$('#divInCollectionType').click( function() { ... }  );

不可能,我无法选择数据原型中的任何div或类。

FormType "User": 

->add('tel_contact')
->add('struct', CollectionType::class, array(
            'entry_type'   => StructureType::class,
            'data_class' => null,
            'allow_add'    => true,
            'allow_delete' => true,
            'by_reference' => false,
            'prototype' => true,
           ))

FormType "StructureType":

 ->add('category', EntityType::class, array(
        'class' => Category::class,
        'choices' => ...,
        'choice_label' => 'nom_cate',
        'expanded' => true,
        'choice_value' => null,
        'attr' => ['class' => 'categories']
    ))

例如,我只想在单选按钮组更改时动态显示所检查类别的名称……这很简单,但我不知道为什么使用collectionType不能正常工作!

1 个答案:

答案 0 :(得分:0)

由于显示表单时集合中没有元素,因此无法直接将集合原型中的div作为目标。我建议你尝试类似的东西 $(document).on('click', '#divInCollectionType', function() {...})