1

我想找到一个 div 标签的宽度

然后将它的 margin-left 设置为该宽度的一半

使用jQuery。

谢谢!!

4

4 回答 4

13

尝试如下,

$('#divID').css('marginLeft', function() { 
    return $(this).width()/2;
});
于 2012-06-14T14:53:01.413 回答
3
$('div').css({'marginLeft' : $('div').width()/2});

现场演示

纯JS

var div = document.getElementsByTagName('div')[0];
div.style.marginLeft = div.offsetWidth/2 +'px';

纯 JS 演示

于 2012-06-14T14:50:01.800 回答
1
$('div.foo').css('margin-left', $('div.foo').width()/2 );
于 2012-06-14T14:58:22.563 回答
0
var elem = $('#divID');
elem.css('margin-left',elem.width() / 2);
于 2012-06-14T14:49:48.683 回答