Angularjs自訂指令之省市區三級聯動__js

來源:互聯網
上載者:User

先上圖


代碼

<!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>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.