Angular.js 的版本是1.2.5
要實現(xiàn)的功能是 Select 三級聯(lián)動。
出現(xiàn)的問題是:選擇完第二級(國家)的時候,第三級(城市)沒有出現(xiàn)。
請大俠們指導(dǎo)!
<p ng-app="app" ng-controller="global"> <select ng-model="ihg" ng-options="ihg.text for ihg in g"> <option value="">-- 洲際 --</option> </select> <select ng-if="ihg.nat" ng-model="nat" ng-options="nat.text for nat in ihg.nat"> <option value="">-- 國家 --</option> </select> <select ng-if="nat.cities" ng-model="city" ng-options="city.text for city in nat.cities"> <option value="">-- 城市 --</option> </select> </p>
var app=angular.module("app",[]); app.controller("global",['$scope',function($scope){ $scope.g=[ {text:"亞洲",nat:[ {text:"中國",cities:[{text:"北京"}]}, {text:"巴林",cities:[]}, {text:"韓國",cities:[{text:"首爾"}]}, {text:"黎巴嫩",cities:[]}, {text:"東帝汶",cities:[]}, {text:"尼泊爾",cities:[]}, {text:"泰國",cities:[{text:"曼谷"}]}, {text:"巴基斯坦",cities:[{text:"伊斯蘭堡"}]} ]}, {text:"歐洲",nat:[ {text:"德國",cities:[]}, {text:"英國",cities:[]} ]}, {text:"北美洲"}, {text:"南美洲"}, {text:"非洲"}, {text:"大洋洲"}, {text:"南極洲"} ] }]);
人生最曼妙的風(fēng)景,竟是內(nèi)心的淡定與從容!
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://www.miracleart.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號