jquery选择器:选择某个元素后具有特定类的第一个div
我如何使用jquery选择具有特定类的第一个div?
例如:当我点击第一个 a.a_preview 等时,我想在第一个 p 标签中放入一些 html
<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
How can i select the first div with a specific class with jquery?
Ex : i want to put some html in the first p tag when i click on the first a.a_preview etc...
<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://jsbin.com/imavug/edit#javascript,html
http://jsbin.com/imavug/edit#javascript,html