gpt4 book ai didi

jquery。用动画改变 div 宽度不起作用

转载 作者:行者123 更新时间:2023-12-01 08:16:07 25 4
gpt4 key购买 nike

大家好,我有变量(widthPercent),我在其中存储百分比,例如:67.33%

当我尝试使用 jquery 动画更改宽度时,它不起作用:

$(this).animate({
width: widthPercent,
}, 2500);
});

但是用 css 改变宽度效果很好:

$(this).css('width', widthPercent);

有人知道我的问题是什么吗?

最佳答案

也许您需要引用 widthPercent

这对我有用

$(document).ready(
function(){
var widthPercent = "35%";
$("#btn").click(
function(){

$(this).animate({
width: widthPercent,
}, 2500);
});
}
);

问题应该出在您的 widthPercent 定义中。

关于jquery。用动画改变 div 宽度不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10660082/

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