gpt4 book ai didi

javascript - 将 $(this) 传递给 jQuery fadeOut 回调

转载 作者:行者123 更新时间:2023-11-30 07:29:54 27 4
gpt4 key购买 nike

我知道我需要使用回调,这样 html() 才会在 fadeOut() 之后发生,但在 fadeOut() 回调我无法从 .hover 访问 $(this)

我尝试使用 var point 传递选择,但它不起作用。

if(!$.browser.msie) {
points = $("div.point");
} else {
points = $("div.flash");
}

Problem Area

$(points).hover(
function () {
var point = $(this);
$('#features_key').fadeOut('normal', function (point) {
$('#features_key').html(point.next('.info').clone()).fadeIn('normal');
});
},
function () {
}
);

HTML

<div class="feature" id="feature0">
<div class="point"></div>
<div class="info"><p>Roof System</p></div>
</div>

最佳答案

不要将点用作 fadeOut 回调的参数。它将隐藏您之前“捕获”的点变量:

$(points).hover(
function () {
var point = $(this);

$('#features_key').fadeOut('normal', function() {
$('#features_key').html(point.next('.info').clone()).fadeIn('normal');
});
},
function () {
}
);

关于javascript - 将 $(this) 传递给 jQuery fadeOut 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/971971/

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