オブジェクトからキーをドロップするボタンを動的に作成したいと考えています。ただし、この時点では、キーを削除する関数に後で渡される正しい値をテストするためにアラートを使用しているだけです。for-in ループを実行しており、ループ内で呼び出される関数に反復子を渡そうとしています。問題は、アラート ステートメントが反復子 'i' を使用しており、ループが終了すると、このアラートのすべてのインスタンスが 'i' の最終値に変更されていることです。(それが理にかなっていることを願っています!)
locations = {};
function Location(nickname, address) {
this.nickname = nickname;
this.address = address;
}
Location.prototype.showLocations = function() {
var x=document.getElementById("demo");
output = "<table><tr><th>Location</th><th>Address</th><th>Delete</th></tr>";
for (i in locations) (function(i)
{
output+=listThis(i);
}) (i);
// for (i in locations) {
// output+=listThis(i);
// }
output+="</table>"
x.innerHTML=output;
}
function listThis(i){
thisLoc = locations[i].nickname;
var thisOutput="<tr><td>"+locations[thisLoc].nickname+"</td><td>"+locations[thisLoc].address+"</td><td><input type='button' value='X' onclick='alert(locations[thisLoc].nickname)' /></td></tr>";
return thisOutput;
}
function enterLocation() {
var address = document.getElementById('address').value;
var nickname = document.getElementById('nickname').value;
locations[nickname] = new Location(nickname, address);
locations[nickname].showLocations();
}
マークアップは次のとおりです。
<p id="demo">Table to go in here.</p>
<div id="panel">
<input id="nickname" type="textbox" placeholder="Location Name" />
<input id="address" type="textbox" placeholder="Sydney, NSW" />
<input type="button" value="Enter" onclick="enterLocation()" />
</div>
この投稿Javascript - how to work with the iterator in a for loop with callbacks で見つかった情報を操作しようとしたが、成功しなかったことに注意してください。私が最初に試していた別の for ループがコメントアウトされていることがわかります。