在localhost和server中出现window.height和width问题

时间:2014-10-28 06:00:42

标签: jquery height width

我使用以下功能查看网站的高度和宽度。

function showViewPortSize(display) {
if(display) {
  var height = jQuery(window).height();
  var width = jQuery(window).width();
  jQuery('body').prepend('<div id="viewportsize" style="z-index:9999;position:fixed;top:40px;left:5px;color:#000;background:#fff;padding:10px">Height: '+height+'<br>Width: '+width+'</div>');
  jQuery(window).resize(function() {
    height = jQuery(window).height();
    width = jQuery(window).width();
    jQuery('#viewportsize').html('Height: '+height+'<br>Width: '+width);
  });
}  }

showViewPortSize(true);

但是localhost和server的值不同。为什么会出现这种差异?

0 个答案:

没有答案