如何使用zf2实现<input type =“radio”onclick =“if(this.checked){myFunction()}”/>之类的东西

时间:2014-04-05 04:41:09

标签: zend-framework zend-framework2 zend-form zend-form-element zfcuser

我正在使用zf2框架。所以我需要实现类似的东西,

我试图通过在互联网上搜索找到它,但我找不到任何有关此问题的教程。

谢谢

1 个答案:

答案 0 :(得分:0)

试试这个。

    $element = new Element\Radio('name');
    $element->setAttribute('onClick', 'if(this.checked){myFunction()}');