JQuery函数错误"不是函数"什么时候使用其他库

时间:2015-06-22 07:02:18

标签: javascript php jquery magento

我在我的网站中使用Magento,jQuery文件已经在标题中,我在正文区域添加了JS文件。这是我的代码:

<a href="listmessage" data-type="iframe" class="venobox_custom">Message</a>

<script type="text/javasciprt" src="<?php echo $actual_link;?>/js/venobox/venobox.min.js"></script>
<script>
    jQuery.noConflict();
    jQuery(document).ready(function($) {
        $('.venobox_custom').venobox({
            framewidth: '400px',        // default: ''
            frameheight: '450px',       // default: ''
            border: '10px',             // default: '0'
            bgcolor: 'white',           // default: '#fff'
            titleattr: 'data-title',    // default: 'title'
            numeratio: true,            // default: false
            infinigall: true            // default: false
        });
    });
</script>

所有文件加载成功,但显示此JS错误:TypeError: $(...).venobox is not a function

我使用http://lab.veno.it/venobox/

中的库

0 个答案:

没有答案