この問題は、ビデオ プレーヤーの HTML コードを Javascript で記述することに関するものです。より高速な方法がいくつかあると思います(document.createElement、Jqueryなど)。この手順のより良い、より高速な方法を教えてください。前もって感謝します
function createPlayer(videoSource){
document.writeln("<div id=\"player\">");
document.writeln("<object width=\"489\" height=\"414\" >");
document.writeln("<param name=\"player\" value=\"bin- debug/FlexPlayer.swf\">");
//etc
document.writeln("</embed>");
document.writeln("</object>");
document.writeln("</div>");
}