替換字符我有一個像如何在JavaScript
var content = '<img id="product-collection-image-515" src="http://www.dressbd.com/media/catalog/product/cache/1/small_image/300x300/9df78eab33525d08d6e5fb8d27136e95/r/u/shirt.jpg" alt="Shirt"></img>';
一個字符串,我想改變它像下面。
var content = '<img id="product-collection-image-515" src="https://www.dressbd.com/media/catalog/product/cache/1/small_image/300x300/9df78eab33525d08d6e5fb8d27136e95/r/u/shirt.jpg" alt="Shirt"></img>';
我想用'https'替換'http'使用JavaScript。我用.replace()
,但它不工作。
我該怎麼做?由於
在你的問題中你提到你使用了'。替換()'功能,這並沒有工作,但你忘了告訴我們你的代碼。所以很難說出你可能做錯了什麼。 –
您可以提供整個代碼來檢查,因爲replace()通常用於此任務 – pTi
不要使用regexp來修改HTML。相反,如果HTML位於DOM中,請修改'img'元素的'src'屬性。 –