C语言 c++ php mysql nginx linux lnmp lamp lanmp memcache redis 面试 笔记 ppt 设计模式 问题 远程连接

由自动执行的匿名函数引起的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

posted on 2013-05-29 01:28  思齐_  阅读(972)  评论(0编辑  收藏  举报