私がやりたいのは、div内のH2タグをjQueryを使用enter code here
するクラスに置き換えることです。.location
どうすればこれを達成できますか?
両方変えたい。URLまたは/および名前。または。ありがとう。
<div class="location">
<h2><a href="#">United States</a></h2>
<h3>lorem ipsum...</h3>
<ul>
<li>Addresss</li>
<li>Address 2</li>
<li>Phone: xxx</li>
<li>Fax: xxx</li>
</ul>
</div>
<div class="location">
<h2><a href="#">Europe</a></h2>
<h3>lorem ipsum...</h3>
<ul>
<li>Addresss</li>
<li>Address 2</li>
<li>Phone: xxx</li>
<li>Fax: xxx</li>
</ul>
</div>
$('.location h2').replaceWith('<a href="#"><h2>Europe</h2></a>');
ただし、両方の場所の名前が変更されます