我正在尝试将此代码应用于任何具有数据属性的元素。我只能把它放在一个班级或身份证上。我怎样才能遍历所有元素?谢谢!
$(".section").each(function() {
var dataHeight = $(this).data("min-height");
var dataPercent = dataHeight / 100;
$(this).css("min-height", function() {
return $(window).height() * dataPercent;
});
});