我的代码就是改变玩家/流
这是我的plnkr http://plnkr.co/edit/nV10XXQI2QStydCIYuyQ?p=preview一些如何在plnkr上无法正常工作但是这里的页面有相同的代码http://tgo-tv.com/test/page1.php
然而,正如您所看到的那样,当您进入该页面时,首次倒计时从10秒开始,然后它将显示播放器。即使我点击视频1或视频2等任何视频按钮,我也希望这样做。它应该开始新玩家的倒计时
这是我的js代码希望你理解
<script>
function startChecking() {
secondsleft -= 1e3, document.querySelector(".load_video").innerHTML = "Please Wait.. " + Math.abs(secondsleft / 1e3) + " Seconds", 0 == secondsleft && (clearInterval(interval), $(".reloadframe").show(), document.querySelector(".load_video").style.display = "none", document.querySelector(".frame_src").style.display = "", document.querySelector(".frame_src").src = document.querySelector(".frame_src").getAttribute("data-src"), $("#btn_click_to_play").hide())
}
function startschedule() {
document.querySelector(".frame_src").src = "about:blank";
clearInterval(interval), secondsleft = threshold, document.querySelector(".load_video").innerHTML = "Please Wait.. " + Math.abs(secondsleft / 1e3) + " Seconds", interval = setInterval(function() {
startChecking()
}, 1e3)
}
function resetTimer() {
startschedule()
}
var timeout, interval, threshold = 1e4,
secondsleft = threshold;
window.onload = function() {
startschedule()
};
</script>