本文介绍了我如何选择与jQuery的这个元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在下面的代码中,如果iam使用$(this)在id ="preface-more-btn"的锚元素中使用,我如何选择id ="read-more"的span元素(适用于一个按钮)在jQuery中?
in the code bellow how can i select the span element with id="read-more" if iam in the anchor element with id="preface-more-btn" using $(this) (to be applied for more than one button) in jquery?
<pre>
<div id="content">
<p>
<span style="font-size: 16px;"></span>
</p>
<span id="read-more" style="display: none;"></span>
<div class="more active" id="preface-more">
<a class="btn-more" id="preface-more-btn" href="#"></a>
</div>
</div>
</pre>
感谢您的帮助.
推荐答案
var selector = $('#read-more');
由于它具有ID,因此在全球范围内是唯一的.
It is globally unique since it is has an ID.
尝试
$(this).parent().prev();
这篇关于我如何选择与jQuery的这个元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!