我一直得到一个Uncaught SyntaxError:意外的令牌类

时间:2015-10-26 20:34:23

标签: javascript

我尝试创建一系列按钮,从播放列表中的视频标题中获取标签。每次运行我的代码时,我都会得到一个" Uncaught SyntaxError:Unexpected token class"以" var singleButton ...."开头的行的错误我怀疑这与我尝试生成div类的事实有关,但我不确定。

谁能看到我做错了什么?任何见解都非常感谢。

<script type="text/javascript">
    var items = jwplayer().getPlaylist(),
      allButtons = ''; //empty str
      jwplayer().on('adError', function(evt) { console.log(evt); });
    for(var i = 0; i < items.length; i++) {
    var singleButton = ""<div class="buttons01"><button type="button">"" +     items[i].title + ""</button></div>"";
    allButtons += singleButton;  
    console.log(singleButton);
    console.log(allButtons);
}
   </script>

谢谢。

3 个答案:

答案 0 :(得分:2)

尝试:

select OrderID from table where SKU = 'ENROLL' and OrderID in 
(select distinct OrderID from table group by OrderID having count(*) > 1)  

而不是:

var singleButton = '<div class="buttons01"><button type="button">' +     items[i].title + '</button></div>';

答案 1 :(得分:0)

[alias] 
    myalias = !git checkout 100 && git fetch --all --prune && git pull origin MAIN

答案 2 :(得分:0)

您没有正确转义字符串。

变化:

<?php foreach ($productions as $production) { ?> <h3><?php echo $production->name; ?> (<?php echo $production->year; ?>)</h3><br /> echo $production->name_nl; echo $production->url; } ?>

致:

var singleButton = ""<div class="buttons01"><button type="button">"" + items[i].title + ""</button></div>"";