我通过 JavaScript 在我的导航栏上添加了 4 个链接。如何通过在我的提要中按 1-4 键来加载这些链接<iframe>?<li> <script type="text/javascript"> document.write('<a href="https://linkhere.com/blah.html?'+new Date().getTime()+'" target="feeds">1</a>');</script></li><iframe name="feeds" width="50%" height="500"></iframe>
1 回答
慕标琳琳
TA贡献1830条经验 获得超9个赞
看看这段代码:
document.addEventListener('keypress', function (event) {
if (event.key === '1')
document.getElementsByName('feeds')[0].src =
'https://linkhere.com/blah.html?'+new Date().getTime();
});
<iframe name="feeds" width="50%" height="500"></iframe>
在这里,我们正在为键“1”设置键盘快捷键。以类似的方式,您可以为其他键添加键盘快捷键。
添加回答
举报
0/150
提交
取消