将 YouTube 视频添加到网络应用程序

发布于 2024-10-18 04:43:55 字数 144 浏览 0 评论 0原文

我正在开发一个小部件,它实际上允许用户添加 YouTube 视频,不同的用户应该能够添加不同的视频。例如,如果用户 A 可以添加“x”视频,他只需复制并粘贴该视频,用户 B 就可以添加“y”视频。我提供了一个文本框来粘贴 YouTube 视频链接。我在前端使用jquery。

I am developing a widget which actually allows user to add youtube videos, different users should be able to add different videos. For Example if user A can add say "x" video, he just need to copy and paste it and user B can add say "y" video. I am providing a textbox to paste the you tube video link. I am using jquery at the front end.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

秋千易 2024-10-25 04:43:55

您可以使用 jQuery 创建 iframe 并将源设置为 youtube 视频 url。

像这样:

 $("#somebutton").click(function(){
    var srcurl = $("#textbox").val();
    $("#mydiv").html("<iframe title=\"YouTube video player\" width=\"640\" height=\"390\" src=\"" + srcurl + "frameborder=\"0\" allowfullscreen></iframe>");
});

You can use jQuery to create a iframe and set the source to the youtube video url.

like this:

 $("#somebutton").click(function(){
    var srcurl = $("#textbox").val();
    $("#mydiv").html("<iframe title=\"YouTube video player\" width=\"640\" height=\"390\" src=\"" + srcurl + "frameborder=\"0\" allowfullscreen></iframe>");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文