更換,如果有類似下面得到兩個值之間的YouTube鏈接,並用IFRAME
<div class="comment">
[youtube]http://www.youtube.com/watch?v=videoid1[/youtube]
random text
</div>
<div class="comment">
[youtube]http://youtu.be/videoid2[/youtube]
random text2
</div>
如何使用jQuery你能提取鏈接的YouTube視頻ID對每個.comment
元素之間[YouTube的]到HTML [/ YouTube的]創建一個嵌入播放器這樣的結果將是
<div class="comment">
<iframe width="420" height="315" src="http://www.youtube.com/embed/videoid1?rel=0" frameborder="0" allowfullscreen></iframe>
random text
</div>
<div class="comment">
<iframe width="420" height="315" src="http://www.youtube.com/embed/videoid2?rel=0" frameborder="0" allowfullscreen></iframe>
random text2
</div>
@Ktash抱歉忘了提及,但無所謂羅布W已經回答了它 –
嘗試這樣的事情:http://jsfiddle.net/shawn31313/aY9XF/7/。我正在使用.text()向您展示它將如何組合在一起。但是,當使用.html()它仍然不會呈現代碼。我不知道爲什麼。 – Shawn31313
我們希望您試圖自己解決這個問題,而不是要求社區爲您提供完整的解決方案。 – Kev