前端之家收集整理的这篇文章主要介绍了
如何在jQuery之前找到指定元素之前的div?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<td>
<div class="resumehint"></div>
<input type="file" id="resume" />
</td>
如何使用jQuery获取“#resume”之前的div?
那就是“.resumehint”
$(this).prev("div")
要么
$(this).prev()
要么
$(this).prev(".resumehint")
如果你在一个函数之外,你可以用$(‘#resume’)替换$(this).
原文链接:https://www.f2er.com/jquery/180480.html