1
我有一些代碼,看起來像這樣:添加變量和靜態值jQuery的CSS
$("#discription").css({'left', '500px + $(current).width();'});
$(current)
是不斷變化的圖像。例如,當它的寬度爲50像素時,我想'左'具有550像素的值。
感謝
我有一些代碼,看起來像這樣:添加變量和靜態值jQuery的CSS
$("#discription").css({'left', '500px + $(current).width();'});
$(current)
是不斷變化的圖像。例如,當它的寬度爲50像素時,我想'左'具有550像素的值。
感謝
試試這個:
var leftWidth = 500 + $(current).width();
leftWidth += "px";
$("#discription").css({'left', leftWidth});
你應該能夠添加500到當前的寬度,然後拼接的 「PX」;
$("#discription").css({'left', (500 + $(current).width()) + 'px'});