0

我正在尝试隐藏 YouTube 嵌入播放器上的徽标和标题。我从数据库中获取一个 URL,而不是直接用代码编写它。我还使用数据列表来显示结果。有人能告诉我我应该怎么做吗?我搜索了一个解决方案,但大多数建议是在 YouTube 视频网址直接用代码编写时隐藏徽标和标题。

这是我尝试过的:

1

<object width="200" height="200">
    <param name="movie" value='<%#DataBinder.Eval(Container.DataItem, "url") %>'></param>
    <param name="allowFullScreen" value="true"></param>
    <param name="allowscriptaccess" value="always"></param>
    <embed src='<%#DataBinder.Eval(Container.DataItem, "url") %>' 
        type="application/x-shockwave-flash" allowscriptaccess="always" 
        allowfullscreen="true" width="260" height="232">
    </embed>
</object>

2

<iframe width="260" height="230" src="<%#DataBinder.Eval(Container.DataItem, "url") %>" 
    frameborder="0" allowfullscreen></iframe>
4

1 回答 1

0

您可以使用此现场演示尝试各种 YouTube 嵌入式播放器参数组合。

根据你的描述,modestbranding=1可能会给你你想要的。

您需要使用标准 URL 参数语法将播放器参数添加到 iframe 的末尾src,在您的示例中存储在#DataBinder.Eval(Container.DataItem, "url").

于 2013-05-02T18:43:00.207 回答