我想使用Tooltipster。 当我以正常方式使用其脚本时:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
它有效。
但奇怪的问题是,当我将其脚本与我的其他脚本(with Laravel-Mix
)结合使用时,它不起作用!
控制台错误:
这是我的代码:
webpack.mix.js
mix.js('resources/assets/js/app.js', 'public/js').version();
mix.sass('resources/assets/sass/app.scss', 'public/css').version();
app.js
window.$ = window.jQuery = require('./files/jquery-3.2.1.min')
require('./files/bootstrap');
require('./files/owl.carousel.min');
require('./files/tooltipster.bundle');
并且用于调用库:
$(document).ready(function () {
$('.tooltipster').tooltipster({
theme: 'tooltipster-punk',
animation: 'fade'
});
});
感谢您提供的任何帮助。