在基于表单中给出的输入提交表单时,在模式框中生成表格

时间:2017-03-21 06:24:37

标签: javascript jquery html forms modal-dialog

正如问题陈述所述,我想根据表格中提供的输入,在提交表格时在模式框内生成一个表格。并且行数可根据给定的输入而变化。

angular-2-dropdown-multiselect

1 个答案:

答案 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