2014-04-24 74 views
0

我應該如何把這個:jQuery的隨機背景位置

var numRand = Math.floor(Math.random()*10001) 

$('.background').css({backgroundPosition: "0 (numRand)px"}); 

謝謝!

回答

2

由於numRand是一個變量,您需要使用+來連接它:

$('.background').css({backgroundPosition: "0 " + numRand + "px"});