我正在使用 OSClass。当转到http://localhost/osclass/index.php?page=item&id=2
页面时,会出现以下错误。
Uncaught ReferenceError: jQuery is not defined
(anonymous function)
Uncaught TypeError: Object [object Object] has no method 'fancybox'
(anonymous function)
o
p.fireWith
e.extend.ready
c.addEventListener.B
Uncaught TypeError: Cannot call method 'create' of undefined
(anonymous function)
在那个文件中,我的 js 是,
osc_register_script('fancybox', osc_current_web_theme_js_url('fancybox/jquery.fancybox.js'));
osc_enqueue_script('fancybox');
osc_enqueue_script('jquery-validate');
osc_enqueue_style('fancybox', osc_current_web_theme_js_url('fancybox/jquery.fancybox.css'));
和
<script type="text/javascript">
$(document).ready(function(){
$("a[rel=image_group]").fancybox({
openEffect : 'none',
closeEffect : 'none',
nextEffect : 'fade',
prevEffect : 'fade',
loop : false,
helpers : {
title : {
type : 'inside'
}
}
});
});
</script>
我的问题在哪里?