Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在单击该链接时获得链接,调用一个 javascript 函数。现在我想使用 Tab 键调用该函数。所以当焦点转到使用 tab 键的链接时,应该调用 javascript 函数。
如何实施?
尝试在您的链接上使用事件 OnFocus。
对给定链接的焦点和模糊事件使用事件处理程序
您可以处理链接的 onfocus 事件。像这样的东西:
<a href="javascript:foo();" onfocus="foo();" >
带有小演示的jsfiddle 。