在选择中打开facebox

发布于 2024-12-10 08:19:05 字数 443 浏览 2 评论 0原文

想知道是否有人可以帮助我从下拉列表中打开 onChange 上的脸箱。到目前为止我有这个。

<select><option value="www.google.com/" id="xxx"></option></select>

在我的头上,我有

/* <![CDATA[ */
$(document).ready(function() {
        $('a[rel*=facebox]').facebox(); 
    }); 
$(document).onchange(function() {
        $("xxx").facebox.open(); 
    });
/* ]]> */   

PS 这是一个精简版

任何帮助将不胜感激。

was wondering if anyone can help me open a facebox on a onChange from a drop down list. I have this so far.

<select><option value="www.google.com/" id="xxx"></option></select>

in the head i have

/* <![CDATA[ */
$(document).ready(function() {
        $('a[rel*=facebox]').facebox(); 
    }); 
$(document).onchange(function() {
        $("xxx").facebox.open(); 
    });
/* ]]> */   

p.s this is a striped down version

any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

离线来电— 2024-12-17 08:19:05

您不能阅读其网站页面底部的说明吗? http://defunkt.io/facebox/ 他们向您展示了如何调用它。

Can you not read the directions at the bottom of the page of their site? http://defunkt.io/facebox/ They show you how to call it.

爱已欠费 2024-12-17 08:19:05

你可以尝试绑定

$(document).bind('reveal.facebox', function() {
  $('#facebox .hero-link').click(function() { alert('click!'); });
});

You can try bind

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