什么是响应式设计?响应式设计的基本原理是什么?如何兼容低版本的IE?

$(window).resize(function () {

  screenRespond();

});screenRespond();function screenRespond(){var screenWidth = $(window).width();if(screenWidth <= 1800){

  $("body").attr("class", "w1800");

}if(screenWidth <= 1400){

  $("body").attr("class", "w1400");

}if(screenWidth > 1800){

  $("body").attr("class", "");

}

}

你可能感兴趣的:(什么是响应式设计?响应式设计的基本原理是什么?如何兼容低版本的IE?)