gpt4 book ai didi

javascript - JQuery:帮助解决 ".live"和 ".scroll"

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:55:54 24 4
gpt4 key购买 nike

如果我有以下 JQuery:

$('#div1, #div2').scroll(function() { my_function($(this)); });

$('#div1, #div2').live('mouseover',function(){ my_function($(this)); });

$(this) 代表什么?

它是 DIV1 还是 DIV2 的 DOM 对象?还是那个 DIV 的 HTML?

上面代码中“this”代表什么?

最佳答案

this 是触发事件的 DOM 元素,在本例中为 #div1#div2

$(this) 是对 jQuery 的调用以将 DOM 元素包装在 jQuery 的包装器中,因此您可以使用 jQuery 函数(例如 .text().bind(), .load()) 就可以了。

关于javascript - JQuery:帮助解决 ".live"和 ".scroll",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4138476/

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