大家好,我正在尝试输出一个包含打开和关闭 javascript 标签的大型 html 块。包含的 javascript 是一个 jw 播放器脚本,它与 javascript 动态变量+url和 php 变量$Title混合。我尝试了 document.write 但播放器没有出现在浏览器中!而是输出了 document.write 语句的一部分!你们能帮我解决这个问题吗?提前致谢。
document.write("<html>");
document.write("<head>");
document.write("<meta http-equiv="Content-Type" content="text/html; charset=utf-8">");
document.write("</head>");
document.write("<br>");
document.write("Title:<?php echo $Title;?> <script type='text/javascript' src='./jwplayer.js'></script>");
document.write("<div id='mediaspace'>This text will be replaced</div>");
document.write("<script type='text/javascript'>");
document.write(" jwplayer('mediaspace').setup({");
document.write("'flashplayer': './player.swf',");
document.write("'file': + url,");
document.write("'autostart': 'true',");
document.write("'controlbar': 'bottom',");
document.write("'width': '470',");
document.write("'height': '320'");
document.write("});");
document.write("</script>");
document.write("</html>");