我知道如何让 div 在单击时引用一个位置
<div onclick="location.href='newurl.html';" tabindex="0"><a>Text</a></div>
但它只在鼠标单击时起作用,但如果我想通过键盘导航并按“Enter 键”或“空格键”它就不起作用..
所以我想要的是这样的
<div onkeydown="location.href='newurl.html';" tabindex="0"><a>Islam</a></div>
我不想在其他地方写代码,比如 js 文件