我需要在 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 函数不起作用