我的网页上有两个选择框,当从第一个选择状态时,我使用 Angular 加载第二个的选项。当页面第一次加载时,第二个选择框有一个项目,Select state...
在第一个项目更改后,我希望它更改为 just Select...
。
是否可以通过 Angular 访问 DOM 元素以进行此更改,或者我必须像在此示例中那样使用完整的 jQuery 选择器:
$scope.$watch('state', function() {
$http.get('institutions?state=' + $scope.state).success(function(institutions) {
$scope.institutionOptions = institutions;
// Would like to avoid this jQuery selector if possible...
$('[name=institution_id] option:first').html('Select...');
});
}, true);