Angularjs IE9中未显示Bootstrap3角形验证错误

Angularjs IE9中未显示Bootstrap3角形验证错误,angularjs,twitter-bootstrap-3,internet-explorer-9,Angularjs,Twitter Bootstrap 3,Internet Explorer 9,我在数字字段上使用简单的表单验证。它在firefox和chrome上运行良好,但在IE9上不起作用。它没有显示弹出的错误消息。我正在使用bootstrap3和AngularJS。下面是代码: form class="form-inline" name="InquiryForm"> <div class="form-group" data-ng-class="{true:'has-error'}[InquiryForm.phNum.$invalid]" &

我在数字字段上使用简单的表单验证。它在firefox和chrome上运行良好,但在IE9上不起作用。它没有显示弹出的错误消息。我正在使用bootstrap3和AngularJS。下面是代码:

form  class="form-inline"  name="InquiryForm">
             <div class="form-group" data-ng-class="{true:'has-error'}[InquiryForm.phNum.$invalid]" >

                      <label for="phNum" >Ph Number</label>
                      <input type="number" class="form-control" name="phNum" id="phNum" maxlength="5">
                      <span data-ng-show="InquiryForm.phNum.$invalid" class="help-inline">Enter a numeric ph number</span>
              </div>        
         <div class="form-group"> 
              <button type="submit" class="btn btn-primary">Sign in</button>
              </div>
        </form> 
formclass=“form inline”name=“InquiryForm”>
Ph值
输入一个数字ph值
登录
非常感谢您的帮助