테이블에 삽입된 null 값을 없애기 위해서는 값을 입력할 때 조건을 확인해야 합니다.
NULL을 확인하는 조건은 다음과 같아야 합니다. -
while( !( yourVariableName1==null || yourVariableName2==null || yourVariableName3==null…...N){ // yourStatement1 . . N }
위의 논리는 null 값 삽입을 허용하지 않습니다.
이제 for 루프를 사용하고 NULL 없이 테이블에 값을 삽입할 수 있습니다. 다음은 코드입니다 -
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fontawesome/4.7.0/css/font-awesome.min.css"> </head> <body> <h2>Demo Of Inserting the value into the table</h2> <p>This is demo on the javascript array</p> <p id="demo"></p> <script> var index = 0; var firstNameArray = new Array(); var lastNameArray = new Array(); var firstName = ""; var lastName = ""; while (!(firstName == null || lastName == null)) { firstName = prompt("Please Enter your First Name="); lastName = prompt("Please Enter your Last Name="); firstNameArray[index] = firstName; lastNameArray[index] = lastName; index++; } document.writeln("<table border='1' width='50%'>"); document.writeln("<caption>DEMO TABLE IN JAVASCRIPT</caption>"); document.writeln("<th>FirstName</th><th>LastName</th>"); for (var startIndex in firstNameArray) { if (firstNameArray[startIndex] !== null && lastNameArray[startIndex] !== null) document.writeln("<tr><td>" + firstNameArray[startIndex] + "</td><td>" + lastNameArray[startIndex] + "</td></tr>"); } document.write("</table>"); </script> </body> </html>
위의 프로그램을 실행하기 위해서는 "anyName.html(index.html)"이라는 파일명을 저장하고 파일을 우클릭하면 됩니다. VS Code 편집기에서 "Open with Live Server" 옵션을 선택합니다.
출력
이것은 다음과 같은 출력을 생성합니다 -
이제 이름을 입력합니다.
이것은 다음과 같은 출력을 생성합니다 -
확인 버튼을 클릭하면 다음과 같은 결과를 얻을 수 있습니다 -
이제 성을 입력하면 다음과 같은 출력이 생성됩니다. -
확인 버튼을 클릭한 후 취소 버튼을 두 번 클릭하면 최종 출력이 나옵니다.
최종 출력 테이블은 다음과 같습니다 -