gpt4 book ai didi

javascript - 在外部函数中使用 $(this)

转载 作者:数据小太阳 更新时间:2023-10-29 05:39:52 25 4
gpt4 key购买 nike

我是 JavaScript 的新手,我想知道为什么它对我不起作用:

function resetColor(){
$(this).css( { "color": "red" } )
}

$('.class').click(function() {
resetColor();
});

我还尝试在单击 .class 时将 $(this) 保存为变量,但这对我也不起作用。

最佳答案

一种更简单的方法是引用函数而不是将其包装在匿名函数中,如下所示:

$('.class').click(resetColor);

关于javascript - 在外部函数中使用 $(this),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25456663/

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