为了账号安全,请及时绑定邮箱和手机立即绑定

将热键快捷方式添加到导航栏链接

将热键快捷方式添加到导航栏链接

慕少森 2022-12-29 09:34:48
我通过 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”设置键盘快捷键。以类似的方式,您可以为其他键添加键盘快捷键。


查看完整回答
反对 回复 2022-12-29
  • 1 回答
  • 0 关注
  • 92 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信