私はオブジェクトを作成し、出力にid
の値をしたいのです:オブジェクトから特定の値を取得するにはどうすればよいですか?
var result = {};
$.each($('.color input').serializeArray(), function() {
result[this.name] = this.value;
});
console.log(result[id]);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="color" style="background-color:pink">
<input type="hidden" name="name" value="fred">
<input type="hidden" name="id" value="23">
</div>
私が期待した結果が23
[変数を使用して動的にアクセスオブジェクトプロパティ]の可能な重複(https://stackoverflow.com/questions/4244896/dynamically-access-object-property-using-variable) – msanford