使用 jQuery 更改 iframe src 属性中的参数
搜索了很多,但没有找到我正在寻找的东西。 我想根据容器的宽度动态调整 iframe 的大小。
HTML:
<div class="row hidden" id="audio">
<div class="twelvecol last">
<iframe id="deezer" scrolling="no" frameborder="0" allowTransparency="true" src="http://www.deezer.com/fr/plugins/player?autoplay=false&playlist=true&width=710&height=308&scover=true&type=album&id=42808&title=" width="710" height="308"></iframe>
</div>
</div>
感谢 jQuery,我尝试将 div#content 的宽度和高度注入 iframe 的 src 属性的参数中:
<script>
$(document).ready(function(){
var contentwidth = $('#content').width();
var contentheight = $('#content').height();
var iframeUrl = 'http://www.deezer.com/fr/plugins/player?autoplay=false&playlist=true&width=' + contentwidth + '&height=' + contentheight + '&scover=true&type=album&id=42808&title=';
$('#deezer').attr('src', iframeUrl).attr('width', contentwidth).attr('height', contentheight);
});
</script>
感谢您的帮助!
Searched a lot but didn't find exactly what i'm looking for.
I want to resize an iframe dynamically with width of his container.
HTML :
<div class="row hidden" id="audio">
<div class="twelvecol last">
<iframe id="deezer" scrolling="no" frameborder="0" allowTransparency="true" src="http://www.deezer.com/fr/plugins/player?autoplay=false&playlist=true&width=710&height=308&scover=true&type=album&id=42808&title=" width="710" height="308"></iframe>
</div>
</div>
Thx to jQuery i try to inject width and height of div#content into parameters of the iframe's src attribute :
<script>
$(document).ready(function(){
var contentwidth = $('#content').width();
var contentheight = $('#content').height();
var iframeUrl = 'http://www.deezer.com/fr/plugins/player?autoplay=false&playlist=true&width=' + contentwidth + '&height=' + contentheight + '&scover=true&type=album&id=42808&title=';
$('#deezer').attr('src', iframeUrl).attr('width', contentwidth).attr('height', contentheight);
});
</script>
Thx for your help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是解决方案
Here is solutions