Nasıl Zend Framework formları javascript eklerim?

1 Cevap php

Nasıl Zend framework ile oluşturulan formları javascript eklerim? Örneğin, ben formu doğrulamak istedim, ya da ben bulanıklık, odaklanma ve onclick gibi olayları kullanmak istedi?

1 Cevap

Ne yapmak eğilimindedir:

  • From the PHP code, generate the form, using Zend_Form and the related classes
    • Bu formu kendisi kurma içerir,
    • Ama aynı zamanda sunucu tarafı doğrulamaları ve bütün bu
  • Once the form works fine, I add Javascript in an un-obstrusive way.
    • Hangi benim JS kodu PHP / Zend_Form kodundan tamamen farklı olduğu anlamına gelir.
    • Ve aynı şekilde daha önce çalışır gibi benim form, Javascript kullanıcının tarayıcısında aktif olma dayanmaz demek.


If you are using jQuery, you can detect when the page is loaded $.ready, and hook a function on that event -- function that will add some dynamic bahaviors to your form.

Of course, you can do the same sort of thing with other JS libraries -- I only took jQuery as an example because of its popularity, and the fact there are some jQuery-related components in ZendX.