📅  最后修改于: 2022-03-11 14:56:21.994000             🧑  作者: Mango
$(document).ready(function(){
$(window).on('resize',function(){
if ($(window).width() < 767) {
location.reload(); // refresh page
}
else {
// width more than 768px for PC
}
});
});