Fancy box是直接对链接做的

发布于 2024-10-01 02:22:47 字数 920 浏览 7 评论 0原文

有这个 js

$(".features_edit").fancybox({
    'width'             : '38%',
    'height'            : '40%',
    'autoScale'         : false,
    'transitionIn'      : 'none',
    'transitionOut'     : 'none',
    'type'              : 'iframe'
});

我的 html

 <li><a href="http://somthing.com/side/48/features/553/edit" class="features_edit">Apples</a></li>
 <li><a href="http://somthing.com/side/48/features/554/edit" class="features_edit">Oranges</a></li>
 <li><a href="http://somthing.com/side/48/features/555/edit" class="features_edit">Pears</a></li>

,但是当我单击链接时,它会转到该位置而不是灯箱 任何想法

好吧,这里有更多信息

所有链接都被添加到我的javascript中,所以当我这样做时

$(".features_edit").click(function(){
  console.log("testing");
});

什么也没有发生,所以也许我需要某种现场或其他东西来使其工作任何想法

I have this js

$(".features_edit").fancybox({
    'width'             : '38%',
    'height'            : '40%',
    'autoScale'         : false,
    'transitionIn'      : 'none',
    'transitionOut'     : 'none',
    'type'              : 'iframe'
});

my html

 <li><a href="http://somthing.com/side/48/features/553/edit" class="features_edit">Apples</a></li>
 <li><a href="http://somthing.com/side/48/features/554/edit" class="features_edit">Oranges</a></li>
 <li><a href="http://somthing.com/side/48/features/555/edit" class="features_edit">Pears</a></li>

but when i click on the link it goes to the location rather then the lightbox
any ideas

Ok here is more infomation

All the links are getting added my javascript so when i did this

$(".features_edit").click(function(){
  console.log("testing");
});

nothing happened so maybe i need some sort of live or something to make it work any ideas

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

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

发布评论

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

评论(3

话少情深 2024-10-08 02:22:47

您能发布更完整的代码示例吗?您遇到任何 JavaScript 错误吗?当不包含 fancybox 插件 js 文件的正确路径时,我也看到了这种情况。

Could you post a more complete code sample? Are you getting any javascript errors? I've also seen this when not including the proper path to the fancybox plugin js files.

春夜浅 2024-10-08 02:22:47

确保在文档准备好后调用 $.fancybox。

例如:

jQuery(document).ready(function($){
$(".features_edit").fancybox({
    'width'             : '38%',
    'height'            : '40%',
    'autoScale'         : false,
    'transitionIn'      : 'none',
    'transitionOut'     : 'none',
    'type'              : 'iframe'
});
});

Make sure you're calling the $.fancybox after the document is ready.

For example:

jQuery(document).ready(function($){
$(".features_edit").fancybox({
    'width'             : '38%',
    'height'            : '40%',
    'autoScale'         : false,
    'transitionIn'      : 'none',
    'transitionOut'     : 'none',
    'type'              : 'iframe'
});
});
故事还在继续 2024-10-08 02:22:47

该文档的链接如下。
http://fancybox.net/howto

以下是有关 Fancybox 需要考虑的一些事项:

  1. 需要有效的文档类型
  2. 需要 jQuery 和fancybox.js 文件。
  3. 需要 fancybox css 文件。

此外,您的 $(selector).fancybox({... 语句必须位于 $(document).read(function{... 语句内。

The documentation is linked below.
http://fancybox.net/howto

Here are some things to consider about Fancybox:

  1. Requires a valid doctype
  2. Requires jQuery and fancybox js files.
  3. Requires fancybox css file.

Additionally, your $(selector).fancybox({... statement must be inside a $(document).read(function{... statement.

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