angularJs's ng-repeat loops through a group of <input> controls, adding a string "xxx" between each control. How to add this string?
业精于勤,荒于嬉;行成于思,毁于随。
<p class="list"> <p ng-repeat="item in list"> <input type="text" ng-model="item.name"/> <span>{{item.title}}</span> </p> </p>
<ng-repeat-start='item in list'></ng-repeat-start> <span ng-bind='item.title' /> <input type='text' ng-model='item.name' /> <ng-repeat-end></ng-repeat-end>
Owner, please post the code of the final effect you want to output and have a look
Owner, please post the code of the final effect you want to output and have a look