gpt4 book ai didi

jquery - 如何在点击事件上向数组添加值

转载 作者:行者123 更新时间:2023-12-01 01:22:16 26 4
gpt4 key购买 nike

我想要实现的是读取点击事件的值并将其保存到数组中。我的代码:

<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。有人可以告诉我我做错了什么吗?

最佳答案

您的逻辑很好,您只需在 click 处理程序中修改之后读取数组的length即可:

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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com