我很难将外部jQuery库集成到我自己的液体页面中。我想用CDN加载它。
在theme.liquid
页面上,我以这种方式加载Javascript:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
{{ 'spot-the-ball.js' | asset_url | script_tag }}
在spot-the-ball.js
内部,我有一个纯粹的Javascript .onload
函数,它是workig。然后我有以下jQuery无效:
$( '.coords' ).mousemove(function ( e ) {
// console.log(e.clientX);
// var x = ( ( e.clientX - left ) / width ).toFixed( 1 ),
// y = ( ( height - ( e.clientY - top ) ) / height ).toFixed( 1 );
x = e.clientX - 50;
y = e.clientY - 50;
$( tooltip ).text( x + ', ' + y ).css({
left: e.clientX - 30,
top: e.clientY - 30
}).show();
});
$( '.coords' ).mouseleave(function () {
$( tooltip ).hide();
});
$(".coords").mouseup(function(){
$('.yourcoordinates').append("X:",x," Y:",y)
}); $( '.coords' ).mousemove(function ( e ) {
// console.log(e.clientX);
// var x = ( ( e.clientX - left ) / width ).toFixed( 1 ),
// y = ( ( height - ( e.clientY - top ) ) / height ).toFixed( 1 );
x = e.clientX - 50;
y = e.clientY - 50;
$( tooltip ).text( x + ', ' + y ).css({
left: e.clientX - 30,
top: e.clientY - 30
}).show();
});
$( '.coords' ).mouseleave(function () {
$( tooltip ).hide();
});
$(".coords").mouseup(function(){
$('.yourcoordinates').append("X:",x," Y:",y)
});
答案 0 :(得分:1)
我在项目中有另一个使用旧版jQuery的js文件。控制台显示错误。 我加载了一个较旧的CDN,现在一切正常。
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.js" type="text/javascript"></script>
答案 1 :(得分:0)
您可以将其放在模板中,例如theme.liquid
:
{{ '//ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js' | script_tag }}