Làm thế nào để tự động chuyển đổi URL YouTube sang mã nhúng (i frame embed code). Và đây là một ví dụ cơ bản sử dụng jQuery
Tham khảo: How to Convert a YouTube Video URL to the Iframe Embed Code, using JQuery
Xem thêm: Hướng dẫn chèn Video Youtube vào khung Comment của BlogspotjQuery:
$('#comment-holder').html(function(i, html) {
var re = /(?:http:\/\/)?(?:www\.)?(?:youtube\.com|youtu\.be)\/(?:watch\?v=)?(.+)/g,
vid = '<iframe width="420" height="345" src="http://www.youtube.com/embed/$1" frameborder="0" allowfullscreen></iframe>';
return html.replace(re, vid);
});
Sử dụng được với 2 dạng URL YouTube như:
http://youtu.be/EfdiHPeT2Sg
http://www.youtube.com/watch?v=EfdiHPeT2Sg
http://youtu.be/EfdiHPeT2Sg
http://www.youtube.com/watch?v=EfdiHPeT2Sg
Tham khảo: How to Convert a YouTube Video URL to the Iframe Embed Code, using JQuery
Post a Comment