如何使用 Javascript 激活内部页面链接?
当使用 JavaScript 加载页面时,如何激活链接?
我试图在页面加载时打开一个灯箱,这是我试图激活的链接。
<a href="#home_video" rel="facebox">Replay Intro</a>
How do you activate a link when the page loads using javascript?
I am trying to open a lightbox when the page loads, here is the link I am trying to activate.
<a href="#home_video" rel="facebox">Replay Intro</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要做的就是
All you need to do is
使用普通的 javascript,即使用
window.location.href = 'your_link_here.html'
使用您的灯箱,代码可能会有所不同。请发布您正在使用的灯箱的链接或向我们展示一些示例代码。通常它们附带 API 或有关如何使用它们的文档。
using vanilla javascript that would be to use
window.location.href = 'your_link_here.html'
Using your lightbox, the code could be different. Please post a link to the lightbox you are using or show us some sample code. Usually they come with API's or documentations on how to use them.
您只想触发
上的“点击”事件吗?
那会是这样的:
Do you just want to trigger a 'click' event on the
<a>
?That would be something like this: