正如问题陈述所述,我想根据表格中提供的输入,在提交表格时在模式框内生成一个表格。并且行数可根据给定的输入而变化。
答案 0 :(得分:1)
在提交表单后编辑#myModal div。
使用此Javascript代码。
$scope.checkListColumnPosition=2;
$scope.table=[
{
columnName:"Name",
sign:0
},
{
columnName:"Age",
sign:0
}
];
$scope.checkIfCheckListIsToBeCreated=function(index){
if($scope.checkListColumnPosition==index+1)
return true;
else
return false;
}
工作jsFiddle