-3
!function ($) {
//=================================== scroll  ===================================//

    $body.scrollspy({
      target: '#navbar-main',
      offset: navHeight
    })

    $window.on('load', function () {
      $body.scrollspy('refresh')
    })

    $('#navbar-main [href=#]').click(function (e) {
      e.preventDefault()
    })


});
4

1 回答 1

4

您正在生成一个函数,但从未执行它。

!(function ($) {
//=================================== scroll  ===================================//

    $body.scrollspy({
      target: '#navbar-main',
      offset: navHeight
    })

    $window.on('load', function () {
      $body.scrollspy('refresh')
    })

    $('#navbar-main [href=#]').click(function (e) {
      e.preventDefault()
    })


})(jQuery); // <-- Execute the function
于 2013-09-15T19:27:28.483 回答