我想用帶有img標籤的字符串替換所有圖像路徑的javascript。我需要一個reg exp或者腳本嗎?用<img src="">替換../IMG/xEPI_STOPPED_TOT.gif
圖像名稱和分機可以在我的字符串中不同。換句話說,我有不同的圖像。
更換../IMG/epi.gif與
<img src="img/epi.gif">
初始字符串
「此圖片../IMG/epi.gif該圖像../IMG/secondImage.jpg是不好」
需要的結果將是
'This image <img src="img/epi.gif"/> and this image <img src="img/secondImage.jpg"/> are not good'
是圖像路徑故意的lowercasing? – jurgemaister 2015-02-11 08:16:27
是的這也是../缺少 – ACe 2015-02-11 08:17:25
順便說一下,所有圖像以../IMG開頭,它們以擴展名.gif或.jpg結尾...... – ACe 2015-02-11 08:18:22