我有一个字段“CompanyName”,我需要进行验证。
这就是我所拥有的:
public function rules() {
return array(
array('CompanyName', 'compare', 'compareValue' => "google", 'operator' => '!=', 'message' => Yii::t('app', 'NOT Google'), 'on' => 'submit'),
);
}
生成的JS:
if(value=="google") {
messages.push("You wrote google!");
}
我想要的(包括 js 端的修剪):
if($.trim(value)=="google") {
messages.push("You wrote google!");
}
我怎样才能做到这一点 ?