我想要实现的是读取点击事件的值并将其保存到数组中。我的代码:
<a href='#' class="hotel" data-hotel-name='Holiday Inn'>Add to favourites</a>
var hotelName = [];
$('.hotel').on('click', function(e){
e.preventDefault();
hotelName.push( $(this).data('hotel-name') );
});
console.log(hotelName.length);
输出总是
0
。有人能告诉我我做错了什么吗? 最佳答案
你的逻辑很好,你只需要在 length
处理程序中修改它后读取数组的 click
:
var hotelName = [];
$('.hotel').on('click', function(e){
e.preventDefault();
hotelName.push( $(this).data('hotel-name') );
console.log(hotelName.length); // < read the length of the amended array here
});
Working example
关于jquery - 如何在单击事件中向数组添加值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36100698/