我有一个动态来自JSON feed的输入,它使用长度不同的各种名称填充div。
有一个图像已设置为无法更改的绝对位置。虽然我需要动态地将图像的CSS左侧值更改为+ 10px
中出现的动态文本的宽度。
var _origin_width = $('#dynamic_text').width() + $('#the_imae').width();
所以他们是这样并排的
Dynamic Text | Image
我无法解决这个问题。
答案 0 :(得分:1)
试试这个:
//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)