我有这个变量:
var scrollYaxis = window.pageYOffset;
我的实际代码:
var productsTopPosition = $('#products').offset().top;
我想通过使用变量值来改变这个,我该怎么做?
var productsTopPosition = $('#products').offset(scrollYaxis);
使用scrollYaxis
插入此内容的正确方法是哪种,因此应用了$('#products')
的偏移量?
答案 0 :(得分:0)
您可以使用以下代码
将偏移设置为特定位置$( "p:last" ).offset({ top: 10, left: 30 });