0

我需要在 jQuery 中获取一个字符串来确定一个整数值,然后将字母“px”添加到字符串中。

所以,这就是我所拥有的:

$(function(){
    var embed_height = $('.embedheight').height();
    if( embed_height < 160 )
    {
        var imheight = embed_height-10;
        var infowidth = imheight+10+"px";                    
            $('.embedinfo').css('left','infow');
    }
});

我需要的是变量 infowidth 例如135px

目前,该 jQuery 函数不起作用

4

1 回答 1

3

为什么?jQuery 会自动将单位 (px) 转换为整数:

var infowidth = imheight+10;
$('.embedinfo').css('left', infowidth);

在这里玩弄它。

于 2012-05-11T03:39:07.923 回答