JavaScript の計算に小さな問題があります。私はこのような機能を持っています:
$( "#main-nav li[class]" ).each(function( index ) {
var position = $(this).offset();
var width = $(this).width();
var center = parseInt(position) - (parseInt(width) / 2);
console.log("Position: " + position.left + ", width: " + width + ", center: " + center);
});
しかし、それはこれをもたらします。計算が行われない方法を知っている人はいますか?
Position: 722, width: 83, center: NaN