gpt4 book ai didi

jquery - 将 jQuery 函数应用于单独出现的元素

转载 作者:行者123 更新时间:2023-12-01 08:36:41 24 4
gpt4 key购买 nike

我正在使用jGravity在加载页面上。页面在页面加载期间加载不同的 div,我想将 jGravity 应用于每个出现的 div,但仅一次。这是我到目前为止的代码,但它每次都将 jGravity 应用于每个 div.bubble,所以它搞乱了一切。

 function showDiv() {
if(counter == 0 ) { counter ++; return; }
$('#whatsapp').find('#bubble-' + counter).show().jGravity({
target: 'div.bubble',
ignoreClass: 'ignoreMe',
weight: 25,
depth: 5,
drag: true
});
counter ++;

提前谢谢

最佳答案

我目前无法测试,但我认为这可以满足您的需求:

function showDiv() {
if(counter == 0 ) { counter ++; return; }
$('#whatsapp').find('#bubble-' + counter + ':not(.ignoreMe)').addClass('ignoreMe').show().jGravity({
target: 'div.bubble',
ignoreClass: 'ignoreMe',
weight: 25,
depth: 5,
drag: true
});
counter ++

它会向每个项目添加一个类 ignoreMe ,然后使用 :not 忽略具有该类的项目。伪类。

关于jquery - 将 jQuery 函数应用于单独出现的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53211571/

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