我想向下滑动元素,它的持续时间必须取决于高度。例如,如果高度为 2000 像素,则持续时间也必须为 2000
这是我的js
var element = document.getElementById('detail-'+thisID),
style = window.getComputedStyle(element),
content_height = style.getPropertyValue('height');
var height_js=parseInt(content_height, 10);
$('#wrap #detail-'+thisID).delay(700).slideDown(height_js);
我走对了吗?如果是,错误在哪里?