我正在尝试将3种不同类型的用户输入保存到本地存储中,并以td格式显示。我怎样才能做到这一点? 这是我试图做的:
function save() {
document.getElementsByClassName("field").each(function(formField){
formdata[this.id] = this.value;
document.getElementById("input"+this.id).value=this.value;
});
localStorage.setItem("formdata", JSON.stringify(formdata));
console.log(localStorage.getItem('formdata'));
document.getElementById("getinput").style.display = "none";
}
但是它不起作用,我可以寻求帮助。
这是输入和显示td:
<table style="width: 50%" align="center" cellpadding="5" cellspacing="5">
<tr>
<th>Date</th>
<th>Time</th>
<th>Title</th>
<th>Check</th>
</tr>
<tr>
<td id="inputDate"> </td>
<td id="inputTime"> </td>
<td id="inputTitle"> </td>
<td style="text-align:center"><input name="Checkbox1" type="checkbox" /></td>
</tr>
</table>
<div id="getinput">
<table style="width:100%;" align="center" cellpadding="5" cellspacing="5">
<tr>
<td style="border:none">Date:</td>
<td style="border:none"><input class="field" id="Date" name="Text1" type="date"></td>
</tr>
<tr>
<td style="border:none">Time:</td>
<td style="border:none"><input class="field" id="Time" name="Text1" type="time"></td>
</tr>
<tr>
<td style="border:none">Title:</td>
<td style="border:none"><input class="field" id="Title" name="Text1" type="text" placeholder="Meeting details"></td>
</tr>
<tr style="text-align:center">
<td style="border:none" colspan="2"><input name="btc" type="button" value="Cancel" onclick="cancel()">
<input name="bts" type="button" value="Save" onclick="save()"></td>
</tr>
</table>
</div>
答案 0 :(得分:1)
好吧...首先,我们需要检查浏览器是否支持浏览器支持。
这是通过检查完成的:
function doesSupportStorage(){
return (typeof(Storage) !== "undefined");
}
如果浏览器确实支持存储,那么我们可以设置和获取项目:
if (doesSupportStorage()){
// Store item
localStorage.setItem("key", "value");
// Load item and show in console
console.log(localStorage.getItem("key")
// Remove item
localStorage.removeItem("key");
}
注意:您可以使用localStorage
或window.localStorage
访问浏览器存储。
如果您不能使用localStorage,则可以使用其他存储方式,例如:
答案 1 :(得分:0)
each
是有效函数,并且getElementsByClassName()返回不支持forEach的HTMLCollection。
我们还可以使用Array.from将HTMLCollection转换为数组并在列表上使用forEach。
Array.from(document.getElementsByClassName("filed")).forEach(...
或用于while循环。
for (let i = 0; i < elements.length; i++) {...}
function save() {
var els = document.getElementsByClassName("field");
const formdata = {};
[].forEach.call(els, function (el) {
formdata[el.id] = el.value;
document.getElementById("input" + el.id).value= el.value;
});
if(typeof Storage !== "undefined") {
alert('No localStorage support');
return;
}
localStorage.setItem("formdata", JSON.stringify(formdata));
console.log(localStorage.getItem('formdata'));
}
<table style="width: 50%" align="center" cellpadding="5" cellspacing="5">
<tr>
<th>Date</th>
<th>Time</th>
<th>Title</th>
<th>Check</th>
</tr>
<tr>
<td id="inputDate"> </td>
<td id="inputTime"> </td>
<td id="inputTitle"> </td>
<td style="text-align:center"><input name="Checkbox1" type="checkbox" /></td>
</tr>
</table>
<div id="getinput">
<table style="width:100%;" align="center" cellpadding="5" cellspacing="5">
<tr>
<td style="border:none">Date:</td>
<td style="border:none"><input class="field" id="Date" name="Text1" type="date"></td>
</tr>
<tr>
<td style="border:none">Time:</td>
<td style="border:none"><input class="field" id="Time" name="Text1" type="time"></td>
</tr>
<tr>
<td style="border:none">Title:</td>
<td style="border:none"><input class="field" id="Title" name="Text1" type="text" placeholder="Meeting details"></td>
</tr>
<tr style="text-align:center">
<td style="border:none" colspan="2"><input name="btc" type="button" value="Cancel" onclick="cancel()">
<input name="bts" type="button" value="Save" onclick="save()"></td>
</tr>
</table>