0

我正在编写一个基于动态图像的函数,该动态图像是根据客户徽标拉入的。此徽标自动填充到 logoContainer div 中。我正在动态设置宽度,因此我可以让徽标正确居中,margin: 0 auto 无论拉入什么徽标,因为在我们获得新客户时为每个徽标指定需要太长时间。

此功能专门在 chrome 和 firefox 中有效,但在任何版本的 IE 中均无效。该函数停止加载 .load,但不提供任何错误。

$(document).ready(function() {
    $("#logoIMG").load(function() {
        $("#logoContainer").css("width",$(this).width());
    });
});
4

0 回答 0