这个jQuery代码有什么问题? (高度)

时间:2014-12-11 07:48:57

标签: jquery

我想要这个:

如果img高度大于187px,则获得具有单个像素的padding-top属性。(当前img高度 - (减去)187px)。

代码:

    $(document).ready(function() {
         $(".tabbed-area .box-wrap .box img").load(function() {
            $imgh = $(this).height();
            if($imgh < 187)
            {   
                $real = $imgh - 187;
                $(this).css("padding-top", $real);
            }
         });

        });

1 个答案:

答案 0 :(得分:0)

你说“img height大于187px”

当您检查小于<时,可能会对此进行更改:

if($imgh > 187)