摘要:
function skip() { let video = document.getElementsByTagName('video') for (let i=0; i<video.length; i++) { video[i].currentTime = video[i].duration } } 阅读全文
摘要:
1.单例模式... Singleton pattern is one of the simplest design patterns. This type of design pattern comes under creational pattern as this pattern provide 阅读全文