我试图让这个脚本在测试帖子上工作。目标是让视频下方的链接跳转到视频中的某些位置。它在 jsfiddle 演示中运行良好,但在我的帖子中没有。
在我的 header.php 中,我加载了该脚本及其引用的脚本:
<head>
<script type="text/javascript" src="http://a.vimeocdn.com/js/froogaloop2.min.js"></script>
<script type="text/javascript" src="http://wcportal.acbaldwin.info/js/vimeochapters.js"></script>
</head>
在我想使用的帖子中,我在纯文本视图中插入了这个标记:
<iframe width="540" height="304" frameborder="0" src="http://player.vimeo.com/video/7100569?api=1&player_id=player_1" id="player_1">
</iframe>
<h2>Chapters</h2>
<ul class="chapterLinks">
<li><a class="seek" href="#" name="15">Seek to 15</a></li>
<li><a class="seek" href="#" name="30">Seek to 30</a></li>
<li><a class="seek" href="#" name="60">Seek to 60</a></li>
</ul>
我确定我打错了,但我不知道在哪里。我不确定我是否正确保存了 .js 文件,或者是否需要在 .js 文件中添加其他标签。我知道有更多优化和 wordpress 友好的方式来集成 JS,但我只需要快速、肮脏和功能性的演示。谢谢你的帮助!