作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我很难将外部 jQuery 库集成到我自己的 liquid 页面中。我想用 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
函数。然后我有以下不起作用的 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)
});
最佳答案
我在项目中有另一个 js 文件,它使用旧版本的 jQuery。控制台显示错误。我加载了一个较旧的 CDN,现在一切正常。
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.3/jquery.js" type="text/javascript"></script>
关于javascript - 液体/Shopify : how I add jQuery to the page?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46658527/
我是一名优秀的程序员,十分优秀!