简体   繁体   中英

AngularJS Dropdown not showing in IE9

Following code below I tried to make it work in Chrome and it works but when I try in IE9, I am not able to get the results in the dropdown. Changed my AngularJS version to AngularJS v1.2.16 and angular.min.js : AngularJS v1.2.16 Still could not see any results.

 <div id="ng-app" ng-app="displayProductList">

                          <br><br>
                              <div ng-controller="ProductsListController">
                              <br>
                              <br>
                                  <div ng-show="products.length">
                                      <div>
                                          <select ng-model="product" ng-options="prod.name for prod in products" />
                                      </div>
                                  </div>
                              </div>

                       </div>

I would try adding a es5-shim.js to your project.

Hope that helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM