gpt4 book ai didi

javascript - Jquery css 根据 div 宽度左改变图像

转载 作者:行者123 更新时间:2023-11-28 16:43:56 26 4
gpt4 key购买 nike

我有来自 JSON 提要的动态输入,该提要使用长度不同的各种名称填充 div。

有一个图像被设置为绝对位置,不能改变。尽管我需要将图像的 CSS 左值动态更改为 + 10px 中的动态文本的宽度。

var _origin_width = $('#dynamic_text').width() + $('#the_imae').width(); 

原来他们是这样并肩的

Dynamic Text | Image

我无法让它正常工作。

最佳答案

试试这个:

//get the width of content +10 in px
var dynamic_width = $('#dynamic_text').width()+10+'px';
//now set the css
$('#the_imae').css('left',dynamic_width)

关于javascript - Jquery css 根据 div 宽度左改变图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33427695/

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