私はjavascriptを学ぼうとしていますが、これまでのところ完全に停止しています。フォーム(3つのフィールド:名前、姓、性別)と以下の表を含むhtml Webページを作成しました。ユーザーがそのフォームに入力しているデータをリストし、javascript (appendChild) を使用してテーブルの下に表示しようとしています
どうすればこれを簡単に行うことができますか? 例は高く評価されています。
<HTML>
<HEAD>
<TITLE>Test1</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css" type="text/css" />
<script language="javascript">
function addRow(){
...
</script>
</HEAD>
<BODY>
<form>
Name:<br>
<input type="text" id="name"><br>
Last Name: <br>
<input type="text" id="lname"><br>
Gender: <br>
<input type="text" id ="gender"> <br>
<input type="submit" id ="submit" value="Submit" onclick="addRow()">
</form>
<table border="1">
<tr>
<th>Name</th>
<th>Last Name</th>
<th>Age</th>
</tr>
<tr>
<td>test, test</td>
<td>test, test</td>
</tr>
<tr>
<td>test2, test1</td>
<td>test2, test1</td>
</tr>
</table>
</BODY>
</HTML>