我有一些標記包含特定類的某些HTML圖像標記。我需要的是找到所有這些圖像,在圖像周圍添加錨標籤,將錨點的href屬性設置爲圖像src值(圖像路徑),最後用新值替換圖像src值(我稱之爲一個將返回這個值的方法)。查找具有特定HTML類名稱的圖像
<p>Some text here <img src="/my/path/image.png" alt="image description" class="featured" />. Some more text and another image that should not be modified <img src="/my/path/image2.png" alt="image description" /></p>
應該成爲。
<p>Some text here <a href="/my/path/image.png"><img src="/new/path/from/method.png" alt="image description" class="featured" /></a>. Some more text and another image that should not be modified <img src="/my/path/image2.png" alt="image description" /></p>
這可以用jQuery在客戶端完成。你只需要一次性的服務器端查找和替換樣式腳本,或者你能用jQuery在你的客戶端實現這一點嗎? – Codesleuth 2010-03-12 09:15:38
需要在服務器上執行此操作,以便適用於那些沒有JavaScript或未啓用JavaScript的用戶。 – 2010-03-12 09:18:14