我在我的网站中使用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
。