我有这个 php/html 代码,每次加载页面时,它都会从 php 数组中加载一个随机的 youtube 视频。但我想要下一个和上一个按钮来加载数组中的下一个和上一个视频。任何时候都只能加载一个视频。我有这个:
<?php $videos = array("0jBRY_Aki9s","1czXvHSjDac","1kbiUiRfnh8","377kKBi6anQ");
$rand = array_rand($videos);
$rand_key = $videos[$rand];
$numOfItems = count($videos);
echo "<iframe width='375' height='310'
src='http://www.youtube.com/embed/$rand_key?&fmt=22&autoplay=1'> </iframe>";?>
<span onclick="<?php $clip = next($videos);
echo "<iframe style='float:left;' width='375' height='310'
src='http://www.youtube.com/embed/$clip?&fmt=22&autoplay=1'>
</iframe>";?> ">next</span>
有没有办法使用 php "next" 方法来更改 iframe 上的当前视频?