我正在尝试在html标签中插入JS变量,但我不知道自己在做什么错。电影无法加载。这是我的代码:

var moviePath = "images/main.swf";
<script>document.write('<PARAM name="movie" value="' + moviePath + '">')</script>

最佳答案

您的var似乎不在脚本范围内。

尝试:

<script type="text/javascript">
    var moviePath = "images/main.swf";
    document.write('<param name="movie" value="' + moviePath + '">');
</script>

关于javascript - 将JS变量插入html标记,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6657736/

10-09 20:03