我必須使用JavaScript更改div的背景。我已經設法做到這一點, 使用document.getElementById('test').style.background = "url('img/test.jpg')";
使用javascript更改背景
現在,我該如何改變其他屬性,如重複,滾動等?
我要用於測試的CSS是像
background: #f00 url('img/test.jpg') no-repeat fixed 10px 10px;
我不能使用jQuery,因爲我不希望包括庫只是一個小事情。