gpt4 book ai didi

javascript - 在 jquery 中使用 css 对象加上宽度

转载 作者:行者123 更新时间:2023-11-28 08:25:07 26 4
gpt4 key购买 nike

如果 $('.list').width 等于 100,我希望得到 142。

$('.modal-dialog').css({
'width': width($('.list').width() + 42)
});

不知道为什么上面的代码不起作用,当我做 $('.list').width() + 42 时它也不起作用..

最佳答案

您不需要将它包裹在 width() 周围,因为这假定您正在尝试调用一个函数。我会尝试这样做:

$('.modal-dialog').css({
'width': ($('.list').width() + 42)
});

关于javascript - 在 jquery 中使用 css 对象加上宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28553489/

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