0

width が 600px 以上に設定されている場合にのみ、以下の JavaScript を実行したい。max-width 条件を設定するにはどうすればよいですか?

$(function() {

   $('#nav li a').bind('click',function(event){
       var $anchor = $(this);

            $('html, body').stop().animate({
                scrollTop: $($anchor.attr('href')).offset().top
            }, 1500,'easeInOutExpo');               

                event.preventDefault();
        });
});
4

1 に答える 1

0

ビューポート幅の場合、クリック コールバック内で次のようなことを行います。

if ($(window).width() < 600) {
    return;
}
于 2013-05-14T11:03:34.957 に答える