我有这个 HTML:
<div class="container">
<a href="#mylink" tabindex="-1">select this</a>
<a href="#mylink" tabindex="-1">select this</a>
<a href="#mylink" tabindex="-1">select this</a>
</div>
<a href="#begin" tabindex="-1">click here to begin selecting</a>
我有这段 JS/jQuery 代码片段:
$('a[href="#begin"]').blur(function(e) {
console.log( e.target.href ); // this will output: #begin
});
所以我需要的.blur
是确定在模糊之后哪个元素得到了焦点<a href="#begin">
。
JS/jQuery 可以做到这一点吗?