0
ここで私は買い物リストを作成しています。項目を入力し、項目を配列に追加するためのボタンを送信するテキストボックスがあります。 提出するとアイテムが配列にプッシュされ、リストが更新されます。何をしようとしているのは、リストされたアイテムのいずれかをクリックすると、そのIDを取得できるはずですが、取得できませんでした。これを解決できますか?それが動的に作成さにバインドされていないようjqueryでクリックされた要素idを取得する方法
'use strict';
(function() {
var itemslist = [];
$('#addList').click(function(e) {
var item = $('#itemname').val();
if (item == '') {
alert('Cannot be empty!')
return false;
} else {
e.preventDefault();
itemslist.push(item);
update();
}
})
var update = function() {
$('#shopList').empty();
itemslist.forEach(function(value, index) {
$('#shopList').append("<section id='" + index + "' class='items-list'>" + value + "</section>") //list-item gets appended after the successful push of item to array
})
}
$('.items-list').click(function() {
console.log(this.id); //unable to get the clicked element id
})
})(window);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container">
<form method="post" name="listform">
<input id="itemname" type="text" value="" name="item" placeholder="Ex: butter and milk" required>
<button class="btn btn-peace" id="addList"><i class="fa fa-shopping-cart" aria-hidden="true"></i> Add to List</button>
</form>
</div>
<div id="shopList">
</div>
これは文字通り 'this.id'に相当するものですが、私はこの問題を解決できないことを保証します。 –
ええ、本当の修正を加えました – hairmot
'console.log(this.id)'がうまくいかない理由を教えてください。 –