FancyBox 无法在 ASP.NET 中运行

发布于 2024-10-31 07:39:27 字数 283 浏览 2 评论 0原文

我已经下载了 fancybox-1.3.4,我尝试将它与我的一个页面一起使用(该页面有一个母版页,其 DOCTYPEindex.html 相同) fancybox-1.3.4 的 )我复制粘贴了整个代码(减去 head、body 等),但它似乎不起作用,但是,如果我将整个代码(包括 doctypes 等)复制粘贴到一个新的 Default.aspx 没有母版页,它工作得很好。

请 帮帮我吧。

I have downloaded fancybox-1.3.4, I tried using it with one of my pages(which has a master page which has the same DOCTYPE as index.html of fancybox-1.3.4) I copy pasted the entire code(subtracting head, body etc) but it doesn't seem to work, however, if I copy paste the entire code(including doctypes etc. all) to a new Default.aspx without master page, it work perfectly.

please
Help me out here.

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

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

发布评论

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

评论(1

姜生凉生 2024-11-07 07:39:27

我同意其他海报的观点;不看代码很难知道。但母版页确实会更改页面上的客户端 ID。如果您通过 ID 调用精美的框,您可能需要使用 css 类来尝试它。

$(".fancy").fancybox();
...
<a href="/SomeUrl" class="fancy" id="my_link">click here</a>

代替:

$("#my_link").fancybox();
...
<a href="/SomeUrl" class="fancy" id="my_link">click here</a>

I agree with the other posters; it's hard to know without seeing the code. But master pages do change the client IDs on the page. If you're calling the fancy box by ID, you might want to try it with a css class.

i.e.

$(".fancy").fancybox();
...
<a href="/SomeUrl" class="fancy" id="my_link">click here</a>

instead of:

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