在javascript中获取DIV宽度和高度

时间:2013-05-09 21:51:57

标签: javascript jquery ajax html size

我正在尝试获取div宽度和高度,因为用户更改了它并将该数字提交到另一个页面。我似乎无法弄清楚如何获得宽度和高度。

<script>
$(function() {
  $( "#set div" ).draggable({ 
    stack: "#set div",
    preventCollision: true,
    containment: $('#main_content'),
      stop: function(event, ui) {
          var mydiv = document.getElementById("set");
          var pos_x = ui.offset.left;
          var pos_y = ui.offset.top;

          var width = mydiv.style.width;        ----THIS DOESN'T WORK
          var height = mydiv.style.height;      ----THIS DOESN'T WORK

          var window_width = window.innerWidth;
          var window_height = window.innerHeight;
          var need = ui.helper.data("need");

          console.log(pos_x);
          console.log(pos_y);
          console.log(width);
          console.log(window_width);
          console.log(need);

          //Do the ajax call to the server
          $.ajax({
              type: "POST",
              url: "updatecoords.php",
              data: { x: pos_x, y: pos_y, need_id: need, width: width, height: height, window_width: window_width, window_height: window_height}
            }).done(function( msg ) {
              alert( "Data Saved: " + msg );
            });  
      }
  });
});
</script>

这样做的正确方法是什么?

4 个答案:

答案 0 :(得分:18)

使用ele.style.width来获取元素的宽度是错误的!!!!!!

在本机JavaScript中,您可以通过两种方式获取元素的CSS:

标准方法

window.getComputedStyle(ele)

例如,

var ele = document.getElementById("content"), // Do not use #
    eleStyle = window.getComputedStyle(ele);
/* Below is the width of ele */
var eleWidth = eleStyle.width;

IE(IE 8及之前版)

element.currentStyle

例如,

var ele = document.getElementById("content"), // Do not use #
    eleStyle = ele.currentStyle;
/* Below is the width of ele */
var eleWidth = eleStyle.width;

为什么不使用ele.style

ele.style只是获得ele的属性风格。如果您使用ele.style.width,则只能获得ele.style的宽度,而不是ele的实际宽度。

如果你做过类似的事情:

ele.style.width = "55px"

使用ele.style.width时,您获得“55px”。如果还没有,你将得到未定义。

如何在jQuery中执行?

使用$ele.width()(如果你想要“精确”宽度,请使用$ele.outWidth()),jQuery已经为你做了一切。

答案 1 :(得分:12)

在普通的JavaScript中使用

var width = mydiv.offsetWidth;
var height = mydiv.offsetHeight;

这将为您提供数值或

var width = mydiv.offsetWidth + 'px';
var height = mydiv.offsetHeight + 'px';

如果您希望它们采用“CSS”格式。

答案 2 :(得分:6)

由于你已经在使用jQuery,你可以这样做:

var width;

if (need == 1) {
   width = $("#web").width();
} else {
   width = $("#set").width();
}

答案 3 :(得分:1)

由于您使用的是jQuery,因此您可能希望了解以下内容:

$( '#标识')。outerWidth() $( '#标识')。outerWidth(真)

这些将非常方便。这允许您查找div的总宽度(填充,边框,宽度和(可选参数)边距)。

http://api.jquery.com/outerWidth/