0
如上所述,我不知道如何去做JQuery,這可能嗎?需要幫助將jquery轉換爲Javascript
的Jquery:
<script>
$('#player').on('timeupdate', function() {
$('#seekbar').attr("value", this.currentTime/this.duration);
});?
</script>
如上所述,我不知道如何去做JQuery,這可能嗎?需要幫助將jquery轉換爲Javascript
的Jquery:
<script>
$('#player').on('timeupdate', function() {
$('#seekbar').attr("value", this.currentTime/this.duration);
});?
</script>
document.getElementById('player').addEventListener('timeupdate', function() {
document.getElementById('seekbar').value = this.currentTime/this.duration;
}, false);