gpt4 book ai didi

javascript - addClass 导致未定义不是一个函数

转载 作者:行者123 更新时间:2023-11-28 00:24:02 25 4
gpt4 key购买 nike

我有:

mouseOver: function () {
var catId = this.category_id;
$('#expenditureSummaryGrid .k-grid-content tr').each(function() {
if($('td span', this).data('id') == catId) {
this.addClass('grid-hover');
}
})
},

但它给了我:

Uncaught TypeError: undefined is not a function

这没有多大意义,因为“this”是我也试图添加一个类的预期 DOM 元素。

出了什么问题?

最佳答案

.addClass()是一个 jQuery 函数,您可能需要更改

this.addClass('grid-hover');

$(this).addClass('grid-hover');

关于javascript - addClass 导致未定义不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29733951/

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