我想获取vimeo iframe的高度和宽度数据(在jquery中)。我想使用这些数据将它们放入div popin
。
<div class="popin">
<iframe src="https://player.vimeo.com/video....." frameborder="0" width="640" height="320"></iframe>
</div>
.popin {
max-width: ?? iframe value;
max-height: ?? iframe value;
}
答案 0 :(得分:0)
使用attr()
选择with和高度
var width = $('iframe[src*=vimeo]').attr('width');
var height = $('iframe[src*=vimeo]').attr('height');
$('.popin').css({maxWidth:width+'px',maxHeight:height+'px'});