Angularjs增加/删除表格

1.引入

2.html部分

Angularjs增加/删除表格_第1张图片



	
	
	
规格选项 排序 操作

3.js

	var app = angular.module("test",[]);
	app.controller('con',function($scope){


		$scope.addTableRow = function(){
			$scope.entity.specificationOptionList.push({});
		}

		$scope.deleteTableRow = function(index){
			$scope.entity.specificationOptionList.splice(index,1);
		}
	})

 

你可能感兴趣的:(AngularJs)