gpt4 book ai didi

jQuery 添加到当前宽度

转载 作者:行者123 更新时间:2023-11-30 23:47:04 24 4
gpt4 key购买 nike

如果存在 #vid,我需要此代码,将 855px 添加到其当前宽度。如果没有,它不应该执行任何操作。我不知道如何让 jQuery 添加到已经存在的数字,但我确信它非常简单。这是我到目前为止的代码:

if ($("#vid").length) {
$("#img-container").width(+=855),
} else {
return false;
}
});

最佳答案

jQuery 方法不支持 += 语法(唯一异常(exception):css strings),您需要编写:

$("#img-container").width($("#img-container").width() + 855)

$("#img-container").css("width", "+=855");

关于jQuery 添加到当前宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3930761/

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