1. The code is as follows: the url of source in
dom has changed, but the video has not changed, and it is still the original one. What is the reason for this
<video controls preload="" >
<source id="video" src="https://media.w3.org/2010/05/sintel/trailer.mp4">
</video>
<script>
setTimeout(() => {
document.querySelector("-sharpvideo").src = "http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"
}, 5000)
</script>