有没有办法获取内联样式并为其指定负值?
我有以下内容:
<div class="info" style="top: 52px"> .... </div>
top
- 属性是动态添加的,但是对于某些显示/布局问题,我需要在某些情况下“反转”它,以便值为top: -52px
所以我尝试了这个:
var divHeight = $('.info').attr('style');
$('.additional').attr('style', divHeight )
这只会增加额外的52px,但如前所述,需要将其反转为top:-52px