テーブルを稼働していますが、テーブルに有効な「malito」リンクを追加できません。見つける。私は何かを試しましたJSファイルを使用してテーブルにリンクを追加する方法
しかし、それは動作しません。
var users = [
{first_name: "Kaitlin", last_name: "Burns", age: 23, email: "[email protected]"},
{first_name: "Joshua", last_name: "Feir", age: 31, email: "[email protected]"},
{first_name: "Stephen", last_name: "Shaw", age: 28, email: "[email protected]"},
{first_name: "Timothy", last_name: "McAlpine", age: 37, email: "[email protected]"},
{first_name: "Sarah", last_name: "Connor", age: 19, email: "[email protected]"}
];
window.onload = function()
{
var tableContainer = document.querySelector("#outputTable");
var table = "";
for (var i = 0; i < users.length; i++)
{
table += "<tr>" +
"<td>" + users[i].first_name + "</td>" +
"<td>" + users[i].last_name + "</td>" +
"<td>" + users[i].age + "</td>" +
//Email link here
"</tr>";
}
tableContainer.innerHTML += table;
};
HTMLファイル
<h3> Information </h3>
<head>
<script src = "js/table.js"></script>
</head>
<body>
<table id = "outputTable" border = "1">
<thead style = "background-color: orangered;">
<tr>
<th> First Name </th>
<th> Last Name </th>
<th> Age </th>
<th> Email </th>
</tr>
</table>
</body>
これは私のテーブルには、私はむしろかなりたくさんのwindow.onload
に装着するよりも、自身や自己呼び出しに関数を呼び出します
Information
First Name Last Name Age Email
Kaitlin Burns 23
Joshua Feir 31
Stephen Shaw 28
Timothy McAlpine 37
Sarah Connor 19
修正済みですが変更はありません –