使用jQuery進行跟蹤是否可行?jquery在其他標籤周圍添加標籤
這是正常的HTML代碼:
<figure>
<a href="">
<img src="" alt="More info" title="">
</a>
<figcaption>More info</figcaption>
</figure>
但我想,jQuery的用它做:
<figure>
<a href="">
<img src="" alt="More info" title="">
<figcaption>More info</figcaption>
</a>
</figure>
我想'.figcaption'應該只有'figcaption'(不點) –
這就是正確的,它現在起作用!我在網站上有多個數字,現在出錯了。 (我得到3倍的更多的信息下),所以我試圖與每個(功能(){}但我做錯了我想? – Maanstraat
謝謝你的幫助! – Maanstraat