angular 基本树结构
阅读原文时间:2023年07月15日阅读:2

HTML:

http://www.ngnice.com/showcase/#/tree/basic

  • {{country.label}}
    • {{province.label}}
      • {{city.label}}
国家:{{vm.country.label}} 省份:{{vm.province.label}} 城市:{{vm.city.label}}

CSS:

.tree li { cursor: pointer; padding-left: 1.3em; } .tree ul { list-style: none; padding-left: 0; }

JS:

'use strict'; angular.module('ngShowcaseApp').controller('ctrl.tree.basic', function ($scope, CityData) { var vm = $scope.vm = {}; vm.countries = CityData; vm.select = function(country, province, city) { vm.country = country; vm.province = province; vm.city = city; }; });

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章