Why can't I get my images to appear in table cells/nodes.. maybe I can get some closure?
问题 I want to add a new image in each cell of the new table and give it the same source as the old table, and then make it clickable. Firstly, I did this: function showData() { if (localStorage.getItem(name) !== null) { var showme = localStorage.getItem(name); alert("I got the table"); var newTable = document.createElement('table'); newTable.innerHTML = showme; newTable.id = "newTable"; newNumRows = newTable.getElementsByTagName('tr').length; newNumCells = newTable.getElementsByTagName('td')