yii框架查看时的javascript验证电子邮件

时间:2018-10-09 05:36:59

标签: javascript php html5 yii

<script type="text/javascript">
function validate() {
    var email = document.getElementById('email').value;
    var phone = document.getElementById('phone').value;

    var emailFilter = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
    var phoneFilter = /^http:\/\//;

    if (!emailFilter.test(email)) {
        alert('Please enter a valid e-mail address.');
        return false;
    }

    if (!phoneFilter.test(phone)) {
        alert('Please correct your phone number.');
        return false;
    }

    return true;
}

</script>

<?php echo $form->textFieldRow($model,'login',array('class'=>'span5','type'=>'email','id'=>'email','maxlength'=>50,'labelOptions' => array('label' => false))); ?>

我已在未运行此yii框架的情况下应用了html表单 但在使用yii框架时不是

1 个答案:

答案 0 :(得分:1)

您可以为此使用Yii表格。

如果您使用Yii,这将是比在js上编写验证更好的解决方案。

您可以看到一个示例here