我的站點是http://littlehousearts.com。我正在使用Prestashop並添加了javascript來顯示每個頁面加載的橫幅。目前我只有一個橫幅圖片,並且它在主頁和分類頁面上的加載效果很好。但它並不總是在產品頁面上加載。我能夠查看源代碼並在源代碼中正確地查看腳本標籤。我使用的標籤是:Javascript並未在每個頁面顯示
<script src="banner.js" type="text/javascript"></script>
在JavaScript文件中的代碼是:
function random_imglink(){
var myimages=new Array();
index=0;
//specify random images below. You can have as many as you wish
myimages[1]="<a href='http://littlehousearts.com/28_golden'><img src='/img/golden.png' width='943' alt='GOLDEN Acrylic Paints' /></a>";
index=Math.floor(Math.random()*myimages.length);
if (index == 0){
index=1;
}
document.write(myimages[index]);
}
random_imglink();
橫幅我現在有負荷下「獲得學分」,並顯示黃金的專業品質色彩。
任何想法,爲什麼這不會加載在一些頁面上?我測試它加載一個不存在的圖像,應該有一個文本在該位置,讀取undefined
,但它甚至不顯示在它丟失的頁面上。
你能給這裏沒有顯示旗幟的鏈接? – Oriol