1. 程式人生 > >js指令碼替換拼接圖片路徑

js指令碼替換拼接圖片路徑

#js指令碼,拼接圖片路徑

##替換拼接頁面中圖片路徑:
-$(function () {
$(‘img’).each(function () {
var imgpath = $(this).attr(‘src’)
imgpath = “{% static '” + imgpath + “’ %}”
$(this).attr(‘src’, imgpath)
})

console.log($('body').html())

})

-python指令碼把頁面中點點/去掉的圖片路徑:
a=open(‘index.html’,‘r’,encoding=‘utf8’)
b=a.read()
print(b)
b=b.replace(‘src="…’,‘src="’)
print(b)
c=open(‘text.html’,“w”,encoding=‘utf8’)
c.write(b)