0
這裏是我的代碼,將電影信息插入到兩個數組中,然後用表格將其輸出到屏幕。如何讓刪除按鈕顯示出來,並將標題和導演分開放置在不同的列上?如何輸出兩個數組到一個帶有刪除按鈕的html表格以確認刪除
var titles = [];
var names = [];
var titleInput = document.getElementById("title");
var nameInput = document.getElementById("name");
var messageBox = document.getElementById("display");
function insert () {
titles.push(titleInput.value);
names.push(nameInput.value);
clearAndShow();
}
function clearAndShow() {
// Clear our fields
titleInput.value = "";
nameInput.value = "";
}
// Print the info to a table
function show() {
document.write('<table>');
document.write('<tr><th>Titles</th></tr>');
for (var i = 0; i < titles.length; i++) {
document.write('<tr><td>' + titles[i] + '</td></tr>');
}
document.write('<tr><th>Directors</th></tr>');
for (var i = 0; i < names.length; i++) {
document.write('<tr><td>' + names[i] + '</td></tr>');
}
document.write('</table>');
}
//delete Button-reset
你是什麼意思刪除?像一個按鈕來刪除表格? – Fallenreaper