我在网上尝试过几次辅导,似乎都没有适当工作。 我想,我想要做的是很简单:
我有9种不同的jpg图像,我需要随机展示,以示背景。 这应当是相当简单的权利?
感谢
EDIT (Sorry, forgot to annex the Code - found in the web):
$(document).ready(function(){
bgImageTotal=9;
randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
imgPath=( ../img/bg/ +randomNumber+ .jpg );
$( body ).css( background-image , ( url(" +imgPath+ ") ));
});