猿问
Angular-Formly:在用户单击时动态添加表单字段
我将如何在表单中添加功能,以便用户可以通过单击“添加”来添加更多输入字段。这使用了角度正式库。
这是确切功能的示例,但仅使用angularjs完成。
墨色风雨
浏览 754
回答 3
3回答
慕桂英546537
看到这个柱塞这是您所需要的示例。正如您在插件中看到的那样,TextArea单击按钮时可以动态创建一个。单击按钮TextAreas也可以删除创建的内容remove。请参阅下面的HTML<div class="col-sm-10"> <input type="button" class="btn btn-info" ng-click="addNewChoice()" value="ADD QUESTION"> <div class="col-sm-4"> <fieldset data-ng-repeat="field in choiceSet.choices track by $index"> <textarea rows="4" cols="50" ng-model=" choiceSet.choices[$index]"></textarea> <button type="button" class="btn btn-default btn-sm" ng-click="removeChoice($index)"> <span class="glyphicon glyphicon-minus"></span> REMOVE </button> </fieldset> </div></div>和JS将如下var app = angular.module('myApp', []);app.controller('inspectionController', function($scope, $http) { $scope.choiceSet = { choices: [] }; $scope.quest = {}; $scope.choiceSet.choices = []; $scope.addNewChoice = function() { $scope.choiceSet.choices.push(''); }; $scope.removeChoice = function(z) { $scope.choiceSet.choices.splice(z, 1); };});
0
0
0
随时随地看视频
慕课网APP
相关分类
AngularJS
我要回答