recherche

Maison  >  Questions et réponses  >  le corps du texte

angular.js - angularjs中ng-repeat指令循环出10个input标签,如何限制input中只能输入数字?

如题,限制input只能输入数字 ,最后获取所有的input的值

<p ng-repeat='item in data'>
    <input type='text' value='{{item.name}}'>
</p>

我原来的方法是使用原生的javascript来操作,虽然也可以解决问题,但是很不理想,求ng思路

伊谢尔伦伊谢尔伦2744 Il y a quelques jours822

répondre à tous(2)je répondrai

  • 習慣沉默

    習慣沉默2017-05-15 17:04:22

    directive

    répondre
    0
  • 天蓬老师

    天蓬老师2017-05-15 17:04:22

    <p ng-repeat='item in data'>
        <input type='number' ng-model='item.name'>
    </p>

    répondre
    0
  • Annulerrépondre