以免说这是我的 div:
<div id="success">
<a href="/index.php">link1</a>
<a href="/index.php">!AnotherLink!</a>
<a href="cat.php">link3</a>
</div>
我想从成功 div 中删除任何相同“href”的链接
它应该是这样的:
<div id="success">
<a href="/index.php">link1</a>
<a href="cat.php">link3</a>
</div>