我们如何在特定的 UL 元素中隐藏 href 元素(不是在所有 UL 元素中,因为 UL 元素具有相同的名称)。
例如,我们有这样的 HTML 代码:
<ul class="UL_tag">
<li>Text 1</li>
<li>Text 2</li>
<li><a href="http://www.google.com" class="description">Link to GOOGLE</a></li>
</ul>
<ul class="UL_tag">
<li>Text 1</li>
<li>Text 2</li>
<li><a href="http://www.yahoo.com" class="description">Link to Yahoo</a></li>
</ul>
我们可以使用以下代码隐藏这些href:
$('a.description').hide();
如果我只想隐藏一个 UL 元素中的一个 href 元素,我应该如何更改这个 javascript 代码?不是所有类名为“description”的 href 元素?
感谢您的帮助!