使用jquery编辑现有的内联样式?

问题描述:

我有一些html似乎默认为:

I have some html which seems to default to :

<ul style="top: 72px; visibility: hidden;">

但是我需要Jquery来拯救我并改变顶部:72px到顶部:37px

But i need Jquery to rescue me and change top: 72px to top: 37px

这可能吗?如在Firefox 37px似乎出现,但在IE7中它显示为72px

Is this possible? as in Firefox 37px seems to show up but in IE7 it shows up as 72px

谢谢

编辑:添加更多信息

ul id = treemenu1

the ul id = treemenu1

,其父元素为div class = treemenu

and its parent element is div class = treemenu

$('#treemenu1').css({ top: 37 });

工作正常。

jsFiddle