在index.html中打开它时背景会随机变化
var imgArr=['background.jpg', 'backgrounds2.jpg', 'backgrounds3.jpg'];
i=Math.round(Math.random()*2);
$('.wrap').css({'background': 'url('+imgArr[i]+') no-repeat fixed'});
在其他页面中,我不需要更改背景,而是使用 index.html中的
一个我如何从 index.html 中保存一个 var 值并在其他页面中使用它而不进行更改?