我有一个元素,需要它的宽度没有垂直滚动条。
Firebug告诉我机身宽度为1280px。
这些方法在Firefox中都可以正常工作:
console.log($('.element').outerWidth() );
console.log($('.element').outerWidth(true) );
$detour = $('.child-of-element').offsetParent();
console.log( $detour.innerWidth() );
它们都返回1263px,这是我正在寻找的值。
但是所有其他浏览器都给我1280px。
有没有跨浏览器的方法来获得没有(!)垂直滚动条的全屏宽度?
width: 100%;