我有一个按钮,它可以在页面中滚动,其样式为:

button{
  top: auto;
  bottom: 0%;
}


现在,我要更改该位置,以便:bottom = $(document).height() - 10rem
我该怎么做?

最佳答案

您可以使用css方法(以像素为单位):

var heightVal = $(document).height() - 10;
$("button").css("height", heightVal + 'px');

关于jquery - 如何通过jquery使用页面高度更改按钮的位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57349566/

10-16 21:07