如何使用 Javascript 激活内部页面链接?

发布于 2024-10-01 05:23:36 字数 162 浏览 3 评论 0原文

当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

伴随着你 2024-10-08 05:23:36

您需要做的就是

<script type="text/javascript">   
 $(document).ready(function() {
    $("#linkID").bind('click',function()
    {
    $(this).facebox();
    })
    $("#linkID").click();
    })
</script>

All you need to do is

<script type="text/javascript">   
 $(document).ready(function() {
    $("#linkID").bind('click',function()
    {
    $(this).facebox();
    })
    $("#linkID").click();
    })
</script>
毁梦 2024-10-08 05:23:36

使用普通的 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.

夜声 2024-10-08 05:23:36

您只想触发 上的“点击”事件吗?

那会是这样的:

$('#home_video').click();

Do you just want to trigger a 'click' event on the <a>?

That would be something like this:

$('#home_video').click();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文