我有一个看起来像这样的 Vimeo URL:
<iframe src="https://player.vimeo.com/video/57418480?byline=0&portrait=0&autoplay=1" width="620" height="350" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
我想要做的是获取视频 ID,在本例中为 57418480 并将其替换为 onclick。我将通过类属性设置 ID。例如:
<li><a href="#" class="57418481">Ethics in Investing</a></li>
单击上面的链接将仅替换数字 ID,因此它将如下所示:
<iframe src="https://player.vimeo.com/video/57418481?byline=0&portrait=0&autoplay=1" width="620" height="350" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>