将变量插入jQuery偏移量

时间:2014-02-17 15:23:46

标签: javascript jquery scroll

我有这个变量:

var scrollYaxis = window.pageYOffset;

我的实际代码:

var productsTopPosition = $('#products').offset().top;

我想通过使用变量值来改变这个,我该怎么做?

var productsTopPosition = $('#products').offset(scrollYaxis);

使用scrollYaxis插入此内容的正确方法是哪种,因此应用了$('#products')的偏移量?

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码

将偏移设置为特定位置
$( "p:last" ).offset({ top: 10, left: 30 });