Angularjs自定义指令之三级联动---地理位置的选择

先上图


代码

<!DOCTYPE html>
<html lang="zh-CN" ng-app="myApp">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <script src="jquery.min.js"></script>
    <script src="angular.js"></script>
    <script src="bootstrap.min.js"></script>
    <link rel="stylesheet" href="bootstrap.min.css">
    <style type="text/css">
      select {
        width : 116px;
      }
      .selectLocation select {
        display: block;
        float: left;
        margin-bottom: 2px;
      }
    </style>
    <script type="text/javascript">
      var myApp = angular.module('myApp', []);
      myApp.controller('Ctrl', ['$scope', 'utilsService', function($scope, utilsService){
        $scope.location = '';
        $scope.$watch('location', function(newValue) {
          console.log(newValue)
          console.log(utilsService.isEmptyObj(newValue))
        })
        
        // if (isEmptyObj($scope.location)) {
        //   //error
        // }
      }]);

      myApp.factory("utilsService", function() {
        return {
          isEmptyObj : function(obj) {
            var flag = true;
            for(var i in obj) {
              if (obj[i] != '') {
                flag = false;
                break;
              }
            }
            return flag;
          }
        }
      })

      myApp.directive("custLocation", ['$http', function($http) {
        return {
          restrict: 'A',
          scope: {
            ngModel : '='
          },
          templateUrl: 'tmpl.html',
          link: function(scope, elem, attrs) {
            scope.country = '';
            scope.province = '';
            scope.city = '';
            scope.detailAddress = '';

            $http.get("location.json").success(function(data) {
              scope.countryList = data.country;
            });

            scope.$watch('detailAddress', function(newValue) {
              // console.log(scope.country.name + scope.province.name + scope.city + newValue)
              scope.ngModel = {
                "country" : scope.country == null || scope.country == '' ? '' : scope.country.name,
                "province" : scope.province == null || scope.province == '' ? '' : scope.province.name,
                "city" : scope.city || '',
                "detailAddress" : newValue
              };
            });

            scope.changeCountry = function() {
              if (scope.country == null) {
                scope.country = '';
                scope.province = '';
                scope.city = '';
                scope.detailAddress = '';
                scope.ngModel = '';
              } else {
                scope.ngModel = {
                  "country" : scope.country.name,
                  "province" : scope.province == null || scope.province == '' ? '' : scope.province.name,
                  "city" : scope.city || '',
                  "detailAddress" : scope.detailAddress
                };
              }
            }

            scope.changeProvince = function () {
              scope.ngModel = {
                "country" : scope.country.name,
                "province" : scope.province == null || scope.province == '' ? '' : scope.province.name,
                "city" : scope.city || '',
                "detailAddress" : scope.detailAddress
              };
            }

            scope.changeCity = function() {
              scope.ngModel = {
                "country" : scope.country.name,
                "province" : scope.province == null || scope.province == '' ? '' : scope.province.name,
                "city" : scope.city || '',
                "detailAddress" : scope.detailAddress
              };
            }
          }
        };
      }]);
    </script>
  </head>
  <body ng-controller="Ctrl">
    <div cust-location ng-model="location"></div>
  </body>
</html>


tmpl.html

<div class="selectLocation">
  <div>
    <select class="btn btn-info btn-sm" ng-change="changeCountry()" ng-model="country" ng-options="C.name for C in countryList">
      <option value="">国家</option>
    </select>
  </div>
  <div>
    <select class="btn btn-info btn-sm" ng-change="changeProvince()" ng-model="province" ng-options="p.name for p in country.province">
      <option value="">省份/直轄市</option>
    </select>
  </div>
  <div>
    <select class="btn btn-info btn-sm" ng-change="changeCity()" ng-model="city" ng-options="c for c in province.city">
      <option value="">市</option>
    </select>
  </div>
  <div style="width:348px;">
    <input type="text" class="form-control" ng-model="detailAddress" placeholder="详细地址" ng-disabled="country=='' || country==null" />
  </div>
</div>

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值