請問您?如何在jQuery中的.css()方法中設置負邊距(或其他任何內容)?我加入可變的大小,但它doesn't作品無法在jQuery css方法中設置負邊距
var width = $('.gallery div img').outerWidth(true);
$('.gallery').css('margin-left', '- ' + width + 'px');
或者是有什麼辦法如何var width
轉換成負數?
請問您?如何在jQuery中的.css()方法中設置負邊距(或其他任何內容)?我加入可變的大小,但它doesn't作品無法在jQuery css方法中設置負邊距
var width = $('.gallery div img').outerWidth(true);
$('.gallery').css('margin-left', '- ' + width + 'px');
或者是有什麼辦法如何var width
轉換成負數?
檢驗寬度首先要確保它的一個數字,然後乘坐空間並真實。
var mywidth = $('.gallery div img').outerWidth();
alert(mywidth);
$('.gallery').css('margin-left', '-' + mywidth + 'px');
負數和數值之間有空格。你有「 - 50px」,而不是「-50px」。 –