Coffeescript if / else问题

时间:2013-03-22 16:45:05

标签: if-statement coffeescript

我如何在Coffeescript中编写这行代码?谢谢

    window.scrollY >= origOffsetY ? navbar.classList.add('navbar-fixed-top') : 
                                    navbar.classList.remove('navbar-fixed-top');

我试试这个,但是没有用。

if window.scrollY >= origOffsetY then navbar.classList.add('navbar-fixed-top') else navbar.classList.remove('navbar-fixed-top')

1 个答案:

答案 0 :(得分:0)

你的coffeescript汇编为:

if (window.scrollY >= origOffsetY) {
  navbar.classList.add('navbar-fixed-top');
} else {
  navbar.classList.remove('navbar-fixed-top');
}

对我来说这似乎很合适。