Video.js cannot be reinitialized after using dispose ()?

after using video.js "s dispose () method, the < video > tag is removed, and
I use

again.
var div = document.createElement("video");
div.id = "mydiv";
div.style.font = "bold 14px" ;
div.color = "green";
div.innerHTML = "Javascript DIV";
document.body.appendChild(div);

create a video tag and then use videojs ("mydiv") to initialize this video tag. Why?

Mar.23,2022

because this method deletes

with Dom.
Menu