这可能很简单,但我似乎无法把它放在一起。我只是想在输入字段之前找到一个锚定选项卡的类。我的代码如下所示:
$(':input[required]').each(function () {
if ($(this).val() === '' && $(this).attr('type') == 'File') {
alert($(this).prev("a").attr('class')); //here is my problem it returns undefined.
}
}
})
所以我只是想在输入字段正上方抓取锚标记的类。 $(this)是一个输入字段。谢谢你的帮助。
我的HTML看起来像这样:
<a class="ClassXYZ">File</a>
<input required type='File'>
我试图返回ClassXYZ。