2016-12-18 1 views

답변

0

이 당신을 위해 작동합니다 :

var before = $(this).width(); 

$(window).resize(function() { 
    var after = $(this).width(); 
    if (after != before) { 
     location.reload() 
    } 
}) 
관련 문제