由自动执行的匿名函数引起的js错误
<script> (function(){ alert(1); })() (function(){ alert(1); })() </script>
上面的代码会提示这样的错误
解决方法:
<script> (function(){ alert(1); })(); //增加一个分号 (function(){ alert(1); })() </script>
参考:https://github.com/filamentgroup/quickconcat/issues/11
https://github.com/imakewebthings/jquery-waypoints/issues/119