使用Jquery和Zend进行表单验证

时间:2013-03-13 01:30:37

标签: jquery zend-framework jquery-validate zend-form

我正在使用Zend Form和Jquery表单验证插件(http://bassistance.de/jquery-plugins/jquery-plugin-validation/)。但是,插件会在输入标记中获取必填字段。例如,它找到“< input type ='text'class ='Required'id ='anything'>”执行验证方法。但是,在Zend Form中,当我使用setRequired(true)函数时,它会在标签部分中放置“class ='required'”。我该如何解决这个问题?

PLUGIN     <标签>嘿< / label>     <输入类型='文字'类='必填'id ='任何'> WORKS!

ZEND     < label class ='Required'> Sup     < input type ='text'id ='anything'>什么都不行!

1 个答案:

答案 0 :(得分:0)

你需要这样的东西

$anything = new Zend_Form_Element_Text('anything');
$anything->setLabel('Label')
   ->setRequired(true)
   ->setAttrib('class', 'required');