在javascript变量中添加px或vh值

时间:2019-06-09 16:16:38

标签: javascript

我必须在javascript变量中的px或vh中插入一个值。 我需要var x = 722;变为722px或100vh。

谢谢

var x = 722;

$(window).scroll(function() {    
    var scroll = $(window).scrollTop();
    if (scroll >= x) {
        $(".B2a").addClass("AI");
        $(".B1a").removeClass("AI");
    }
});

2 个答案:

答案 0 :(得分:0)

您的滚动变量已经是一个数字,您无需添加'px'

如有必要,您可以在函数中使用console.log(scroll);对其进行调试!

答案 1 :(得分:0)

字符串缝合的简短版本:

var a = 'appels';
var b = 3;
var c = b+' '+a;
alert(c);

a = ' I ate';
c += a;
alert(c);