我的HTML結構如下:與jQuery的
<div class="content">
<img alt="" src="a.png" height="400" width="400">
<a href="https:www.google.com" class="avatar" ></a>
</div>
<div class="content">
<img alt="" src="b.png" height="400" width="400">
<a href="https:www.yahoo.com" class="avatar" ></a>
</div>
我想包裝的jQuery圖像標籤周圍的錨標記,所以我的最終結果將是:
<div class="content">
<a href="https:www.google.com" class="avatar" >
<img alt="" src="a.png" height="400" width="400">
</a>
</div>
<div class="content">
<a href="https:www.yahoo.com" class="avatar" >
<img alt="" src="b.png" height="400" width="400">
</a>
</div>
用jQuery做這件事最簡單的方法是什麼?
感謝,
你是如何以第一個結構結束的?你有什麼嘗試? – putvande
你能回答putvande的問題嗎,你是如何得到這個結構的? –