所以我有这个代码:
var navWidth = jQuery("ul#navi"),
phoneWidth = jQuery("div#phone-number"),
diff = navWidth.outerWidth() + phoneWidth.outerWidth();
console.log(navWidth.outerWidth());
console.log(phoneWidth.outerWidth());
console.log(diff);
它显示在控制台中
650 150 850
谁能告诉我为什么它显示 850 为 650 + 150 ?