當時考慮有三種方法:
1.直接把路徑寫在js檔案裡,但如果引用頁面路徑層級改變就沒轍了。
2.寫個class,放在主題包裡的css檔案或者單獨建立一個css檔案給日期控制項專用。但是控制項中的其他元素並沒有使用class的需要,單獨建立相應css文檔似乎小題大做。
3.把以上兩個方法排除後,自然要採用動態載入圖片路徑的方法咯。
關鍵代碼如下:
複製代碼 代碼如下://建立一個全域變數儲存路徑
var imgRootUrl = "";
//擷取圖片路徑所在目錄
var strPath=window.document.location.pathname; //擷取主機地址之後的目錄部分
var thisUrlCount = strPath.split('/');
var hierarchyOfFolders = thisUrlCount.length-2;//擷取目錄層級
for(iRoot=0;iRoot<hierarchyOfFolders;iRoot++)
{
imgRootUrl +="../";
}
imgRootUrl +="Images/"; //這個Images其實也可設為參數,由於所有項目圖片檔案夾命名固定,所以沒有設立參數,但仍然儲存可擴充性。
加圖後,控制項效果是相當美觀了:
順便附上所有window.document.location其下屬性:
document.location.hash // #號後的部分 VS window.location.hash
document.location.host // 網域名稱+連接埠號碼
document.location.hostname // 網域名稱
document.location.href // 完整URL
document.location.pathname // 目錄部分(應用程式)
document.location.port // 連接埠號碼
document.location.protocol // 網路通訊協定(http:)
document.location.search // ?號後的部分