ngmodel在android中没有使用ngrepeat

时间:2015-07-06 16:22:05

标签: android angularjs

输入框在ngrepeat中被包围时不占用任何字段。在浏览器中它运行良好但在Android中作为Web视图运行时出错。

 <div ng-repeat="teleOrderDetail in teleOrderDetails">          
   <table style="text-align:center;font-size:13px;width:98%;height:9%;">
      <tr>
         <td style="color:grey;width:33.34%;"><input type="tel" name="quantity" ng-model="teleOrderDetail.quantity"  class="inputtd"></td>
      </tr>
   </table>
</div>  

1 个答案:

答案 0 :(得分:0)

输入类型'tel'似乎只有Safari支持。这可能是你正确显示它的问题。如果这不是问题,您是否可以提供有关错误的更多信息?

见这里:http://www.w3schools.com/html/html_form_input_types.asp