好友
阅读权限10
听众
最后登录1970-1-1
|
为什么自动播放完一个视频,不会自动播放下一个,而是重复播放,需要修改哪一个地方?
// @AuThor luter
// @match *.dtdjzx.gov.cn/course/special/*
// @match *.dtdjzx.gov.cn/*
// @grant none
// ==/UserScript==
(function ()
{setTimeout(function()
{if(window.location.href.indexOf("#/home")!=-1){
window.open("#/personSpace");
}
else
{
if(window.location.href.indexOf("studyCours")!=-1)//课程列表页判断
{document.getElementsByClassName("el-table__row")[0].getElementsByClassName("cell")[6].getElementsByTagName("span")[1].click();
window.opener = null;
window.open(' ','_self');
window.close();}
else
{document.getElementsByTagName("video")[0].muted = true;
document.getElementsByTagName("video")[0].play();
setInterval(function ()
{ var ti = document.getElementsByTagName("video")[0].duration-document.getElementsByTagName("video")[0].currentTime
console.log(ti)
if(ti ==0)
{setTimeout(function(){document.querySelector("#app > div > div.nav > div > ul > li:nth-child(10) > a").click();},10000);
//window.close();
setTimeout(function(){window.location.reload();},20000);
}
}, 10000);
}
}
}, 10000);
}
)(); |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|