不知道为什么这不起作用,但是我有:
https://jsfiddle.net/m9uqdx5y/
<div class="sectionContent">
<span class="open"><a>top</a></span>
<span class="closeEditorLink"><a>bottom</a></span>
</div>
var $preDiv = $('.closeEditorLink');
$($preDiv).click(function () {
$($preDiv).closest('.sectionContent a').focus();
});
我只需要关注上面的A标签。
最佳答案
.closeEditorLink
不是.sectionContent a
的子级,因此.closest(".sectionContent a")
不会显示任何内容。
请尝试使用.closest('.sectionContent').find('.open a').focus();
。