ng의 메일박스 검사

1468 단어
$scope.sendMail = function () {

            // console.log($scope.inputValue.inputEmail);

            // 

            if (!$scope.inputValue.inputEmail) {

                alert({ type: '', title: ' ', msg: ' ' });

                return;

            } else {

                var reg = /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/; // 

                if (!reg.test($scope.inputValue.inputEmail)) {

                    alert({ title: ' ', msg: ' , ' });

                    return false;

                }

            }
        }

좋은 웹페이지 즐겨찾기