我創建了一個小的演示...查看是否和您的要求相匹配
<!DOCTYPE html>
<html lang="en-US">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<select ng-model="selected1" ng-options="x for x in option1" ng-change ="fireEvent1(selected1)">
</select>
<select ng-model="selected2" ng-options="y for y in option2" ng-change ="fireEvent2()">
</select>
<select ng-model="selected3" ng-options="z for z in option3" ng-change ="fireEvent3()">
</select>
</div>
</body>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.option1 = ["a", "b", "c","d"];
$scope.option2 = ["a", "e", "f","g"];
$scope.option3 = ["e", "s", "p","q"];
$scope.fireEvent1 = function(selected1){
for(var i=0;i< $scope.option2.length; i++){
if($scope.option2[i] == selected1){
$scope.selected2 = $scope.option2[0];
}
}
}
});
</script>
</html>