我有許多.html頁面中的客戶端特定圖像,我想將圖像路徑從默認文件夾重定向到其他文件夾。jQuery - 圖像路徑替換文件夾錯誤
我試圖從外部 JavaScript文件這是預期工作實現通過下面的代碼相同。但是,收到錯誤和HTML源仍呈現
我得到了如下錯誤,雖然圖像作爲舊文件路徑加載
GET file:///E:/User/Images/test.png net::ERR_FILE_NOT_FOUND
PS:我這樣做SCR
$(document).ready(function() {
$(function() {
var img = $("img");
img.each(function() {
var src = $(this).attr('src');
if (src.indexOf('Images/') > -1) { // Default path of the images
$(this).attr('src', src.replace("Images", "Images/client")); // New path
}
});
});
});
此外,如果我檢查源代碼,它仍然顯示爲Images/test.png
而不是Images/client/test.png
@RIYAJKHAN,你爲什麼將他重定向到那個頁面,你看過他的代碼嗎? –