本文介绍了如何在网页中嵌入YouTube视频频道?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚整合了以下YouTube嵌入代码
I have just integrated the below YouTube embedded code
<param name="movie" value="http://www.youtube.com/.....">
</param>
<param name="wmode" value="transparent"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/....." type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="transparent" width="560" height="340"></embed>
</object>
但我也想在我的网页上列出我的视频频道。如何才能做到这一点?
But I also want to list my video channel on my web page. How I can do this?
推荐答案
尝试此操作:将此脚本标记包含在您想要的页面
将YourChannelName修改为您的YouTube名称以及iframe的宽度和高度,如果您需要的话
try this: include this script tag where you want in you page
modifiy YourChannelName to your youtube name and the width and height of the iframe if you want
<script
src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/ig/modules/youtube.xml&up_channel=YourChannelName&synd=open&w=320&h=390&title=&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js">
</script>
这篇关于如何在网页中嵌入YouTube视频频道?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!