Dynamically add a table in the form/div tag
P粉127901279
P粉127901279 2023-09-13 23:18:44
0
1
614

Dynamically created tables appear outside the div tag.

I'm creating a responsive registration form. The input field takes the required number of rows for the table given by the user and creates the required number of rows with a fixed number of columns.

I created the table but it doesn't appear where I want it to. Please give me some advice. Also helps with the label issue in the first line, which is the title (th).

function createFamTable() { var rows = document.getElementById("family-rows").value; var tbl = document.createElement("table"); tbl.id = "family-table1"; var tblBody = document.createElement("tbody"); for (let i = 0; i < rows; i++) { var row = document.createElement("tr"); for (let j = 0; j < 5; j++) { var cell = document.createElement("td"); switch(j) { case j=0: var cellText = document.createElement('input'); cellText.placeholder = "Enter Name"; cell.appendChild(cellText); break; case j=1: var cellText = document.createElement('input'); cellText.placeholder = "Enter Relation"; cell.appendChild(cellText); break; case j=2: var cellText = document.createElement('input'); cellText.placeholder = "Enter Profession"; cell.appendChild(cellText); break; case j=3: var cellText = document.createElement('input'); cellText.placeholder = "Enter Age"; cell.appendChild(cellText); break; case j=4: var cellText = document.createElement('select'); var arr = ["Select Yes / No","Yes","No"]; for (var k=0;k<=2;k++){ var opt = document.createElement('option'); opt.value = arr[k]; opt.text = arr[k]; cellText.appendChild(opt); } cell.appendChild(cellText); break; } row.appendChild(cell); } tblBody.appendChild(row); } tbl.appendChild(tblBody); document.body.appendChild(tbl); cell.setAttribute("border", "2"); addFirstRow(); }
Family Details
Back

I want the table to appear inside the div tag (in that empty space).

I also tried adding a label title to the table. Please also help to resolve this issue.

P粉127901279
P粉127901279

reply all (1)
P粉644981029

You did a great job; just some miner's mistake. Add an attribute (type="button") for the "Add Details" button; by default, the button type in the form is submit. Add the attribute as follows:

and add a div

anywhere

and this

document.body.appendChild(tbl);
Replace

with

document.getElementById('form-table').appendChild(tbl);

or

document.getElementById('form-table').innerHTML = tbl;
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!