ng-show / ng-如果不能使用谷歌自动完成pac-container自定义结果

时间:2017-01-31 06:33:25

标签: angularjs google-maps-api-3 google-places-api google-places

我已使用以下代码将自定义结果添加到我的google places autocomplete pac-container -

angular.element('.pac-container').addClass('location-autocomplete-container');
var el = angular.element('<div id="cantFind" class="pac-item cant-find-location">' +
                        '<i class="mdi mdi-magnify text-info"></i><a class="text-info" href="#">Can\'t find your location?</a></div>');
angular.element(".pac-container").append(el);

我想在特定的变量条件下隐藏此结果。假设变量名是showCantFindResult。 ng-show / ng-if不能处理cantFind的div。有没有办法在变量值的基础上显示/隐藏div?

0 个答案:

没有答案