私は JavaScript を学ぼうとしており、プロジェクトのローカル ストレージを見つけようとしています。しかし、まず、Team コンストラクターからキーをプログラムで作成する必要があると思います。
var Team = function(team, manager, cell, add1, add2, city, st, zip, sponsor) {
this.team = team;
this.manager = manager;
this.cell = cell;
this.add1 = add1;
this.add2 = add2;
this.city = city;
this.st = st;
this.zip = zip;
this.sponsor = sponsor;
};
これは私が作成したフォームからのもので、今は localstorage を作成したいと考えています。これは私の失敗した試みです:
function saveTeam() {
for (var i = 0; i < Team.length; i++) {
localStorage["league." + i "." + javascriptNameOfProperty ] = $('#'+ javascriptNameOfPropertyName + ').val() };
またはそのようなもの。「プロパティ」、「キー」などを試しましたが、javascriptNameofProperty では機能しません。もちろん、それを理解したら、もちろん localstorage を理解する必要があります。