我想實現JavaScript頁面加載Impresspages 4.2.3上的背景圖像更換器,如http://www.9lessons.info/2011/03/background-image-change-on-refresh-with.html所述。它在我的本地主機上工作,但移到我的託管服務器時不起作用。JavaScript背景圖片在頁面加載更改Impresspage
我把這段代碼下面的「_header.php」標籤之間:
<script type="text/javascript">
var totalCount = 4;
function ChangeIt()
{
var num = Math.ceil(Math.random() * totalCount);
document.body.background = 'http://localhost/halmaheradivecruise.com/theme/air/assets/img/'+num+'.jpg';
document.body.style.backgroundRepeat = "repeat";// Background repeat
}
</script>
和下面這段代碼在標籤:
你忘了切換到這個路徑:'document.body.background ='http://localhost/halmaheradivecruise.com/theme/air/assets/img/'+num+'.jpg';'到路徑您的服務器上的圖像? – DrewT 2014-10-07 04:58:06
我將路徑更改爲www。但仍然無法正常工作...... – user3766934 2014-10-07 05:03:48
爲什麼腳本中包含'標記? – DrewT 2014-10-07 05:20:45