ng-click不能在IE中工作,但在Chrome,safari,firefox等其他浏览器中工作

时间:2014-08-26 07:07:30

标签: html angularjs

这是我的代码。只是简单地尝试使用angularjs进行登录操作。它在其他浏览器中工作。但不仅仅在IE中工作。我该如何解决这个问题?

               <div class="form-group">
                    <label for="inputEmail">Email</label>
                    <input type="email" class="form-control inputValue" id="inputEmail" ng-model="LoginEmail" placeholder="Email">
                </div>
                <div class="form-group">
                    <label for="inputPassword">Password</label>
                    <input type="password" class="form-control inputValue" id="inputPassword" ng-model="LoginPassword" placeholder="Password">
                </div>
                <button type="submit" class="btn btn-default" ng-click="btnAdminLogin()">Login</button>

1 个答案:

答案 0 :(得分:1)

如果您想依赖在旧版本的Internet Explorer中使用的代码,则需要使用angular v 1.2.x,而不是angular v 1.3.x.

详见this blog post

  

AngularJS 1.3停止支持Internet Explorer 8