jQuery从iframe代码获取YouTube视频src

时间:2015-09-28 14:47:09

标签: jquery html iframe youtube

我想从iframe嵌入代码中获取youtube src并将其作为变量传递。

例如,如果我的youtube嵌入代码是:

<iframe width=&quot;1024&quot; height=&quot;576&quot; src=&quot;https://www.youtube.com/embed/rfxESg1_hEA?feature=oembed&quot;frameborder=&quot;0&quot;allowfullscreen></iframe>

我正试图获得https://www.youtube.com/embed/rfxESg1_hEA

有没有办法用jQuery做到这一点?

1 个答案:

答案 0 :(得分:3)

试试这个:

var src = $("iframe").attr("src").split('?')[0];
alert(src);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<iframe width=&quot;1024&quot; height=&quot;576&quot; src="https://www.youtube.com/embed/rfxESg1_hEA?feature=oembed&quot;frameborder=&quot;0&quot;allowfullscreen"></iframe>