gpt4 book ai didi

append 类上的 jquerytoggleClass

转载 作者:行者123 更新时间:2023-12-01 08:14:46 25 4
gpt4 key购买 nike

我有一个动态生成的表,它是通过ajax 请求创建并 append 到页面的。当用户将鼠标悬停在每个单元格上时,我需要更改背景。 (这不是一个 html 表格 - 该表格是通过 css 生成的,因此没有等等...)。

到目前为止我的代码如下。

$(document).on('hover', '.day_holder1a', function(){
$(this).toggleClass('forum_hover');
});

我认为问题出在“this”,它引用了 $(document),但我的更改没有成功。

我已经删除了toggleClass中forum_hover之前的点,因为这是我的一个错误,应该检查我粘贴的代码。

最佳答案

不,问题不在于 this 对象。

问题出在您的toggleClass函数中的.

$(document).on('hover', '.day_holder1a', function(){
$(this).toggleClass('forum_hover');
});

注意:不要使用hover,而是使用mouseenter

关于 append 类上的 jquerytoggleClass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11360361/

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