gpt4 book ai didi

javascript - jQuery var 返回对象

转载 作者:行者123 更新时间:2023-12-01 02:06:21 25 4
gpt4 key购买 nike

我有一个名为 loopNum 的变量它作为控制台中的对象返回。其他变量按预期返回。谁能解释为什么会发生这种情况?谢谢

脚本

    // stores how many carousels there are
var carouselNum = $('.carousella').length;

// stores the product of number of carousels times the increment value
var loopNum = $((carouselNum - 2) * -183);

console.log('loopNum = ' + loopNum);
console.log('carouselNum = ' + carouselNum);

控制台

loopNum = [object Object]

最佳答案

分配carouselNum 变量后,不要将其包装到jQuery 包装$() 中。试试这个:

var carouselNum = $('.carousella').length;

// stores the product of number of carousels times the increment value
var loopNum = (carouselNum - 2) * -183;

关于javascript - jQuery var 返回对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14513239/

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