0

如何在 IE8 中更改 cufoncanvas css

<cufoncanvas style="left: 0px; top: 1px; height: 27px;" cufid="215">

我试过$(document)

$(document).ready(function()  {
    $("cufoncanvas").css({
      top: '10px'
    });
});
cufon.refresh();
4

1 回答 1

0

设法通过删除来修复它$(document).ready(function()

以便

$("cufoncanvas").css({

      top: '10px'
    });
于 2012-06-14T18:47:53.657 回答