【发布时间】:2013-01-16 05:00:24
【问题描述】:
我网站上的所有花式框都可以正常工作到早上,然后每个页面都突然出现错误,并且所有花式框都在标签中打开。 Uncaught TypeError: Object [object Object] has no method 'fancybox' 我不知道问题出在哪里。请帮帮我,我已经花了一半来弄清楚但没有帮助。
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$(function () {
// Error here **Uncaught TypeError: Object [object Object] has no method 'fancybox'**
$("a.fancybox").fancybox({
'overlayShow': true,
'autoSize': false,
'autoResize': false,
'autoDimensions': false,
'enableEscapeButton': true,
'showCloseButton': true,
'width': 620,
'height': 250,
'type': 'iframe',
'scrolling': 'no'
});
});
</script>
<link rel="stylesheet" href="/Content/fancybox/jquery.fancybox.css?v=2.1.2" type="text/css" />
<script type="text/javascript" src="/Content/fancybox/jquery.fancybox.pack.js?v=2.1.2"></script>
<link rel="stylesheet" href="/Content/fancybox/helpers/jquery.fancybox-buttons.css?v=1.0.5" type="text/css" />
<script type="text/javascript" src="/Content/fancybox/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script>
【问题讨论】:
-
你正在使用
http://code.jquery.com/jquery-latest.min.js所以检查stackoverflow.com/q/14344289/1055987