给出元素高度并在之后删除它
我正在使用 Easy Pagination 插件 对某些内容进行分页。问题是,点击“下一步”后,浏览器会跳转到元素加载数据的高度进行分页。
我正在尝试获取元素的高度,例如 .recent
,并在单击 .next
之前将其提供给 .recent
(在分页之前)发生),然后设置它。
所以我想知道如何设置.recent的高度,然后起飞?
这是我到目前为止所尝试的:
var recentH = $('.recent').height();
$('.next').click(function(){
$('.recent').css( 'height', recentH );
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您要查找的元素
$.height()
或$.css('height')
的高度,它们都得到并且设定值。请参阅 height() 和 css()。“.css('height') 和 .height() 之间的区别在于,后者返回无单位的像素值(例如 400),而前者返回完整单位的值(例如 400px) )”
您是否使用了一些分页插件,并且它是否有自己的
.next
元素点击事件处理程序?请注意,您的选择器根据 CSS 类来匹配元素,并且可能有多个元素。因此,您应该指定要读取高度的元素。
简短的例子;
$.height()
or$.css('height')
is what you´re looking for, they both get and set values. See height() and css()."The difference between .css('height') and .height() is that the latter returns a unit-less pixel value (for example, 400) while the former returns a value with units intact (for example, 400px)"
Are you using some plugin for the pagination and does it have it´s own click event handler for the
.next
element?Notice that your selectors matches elements by their CSS class and that there might be multiple elements. You should therefore specify the element to read the height of.
Short example;
看到这个例子后,我想这可能会有所帮助:
After seeing the example I figured this might help: