标签: jquery height element
就像:
$('.google-maps').attr('data-desktop-height', this.height());
答案 0 :(得分:1)
您可以提供一个函数作为第二个参数,该参数在选择器匹配的每个元素的上下文下工作:
$('.google-maps').attr('data-desktop-height', function() { return $(this).height() });