哪里少了分号?

Posted

技术标签:

【中文标题】哪里少了分号?【英文标题】:Where is there a missing semicolon? 【发布时间】:2015-05-18 21:04:17 【问题描述】:

JSLint 声称这里缺少分号:

if ('onhashchange' in window && (docmode === undefined || docmode > 7 )) 
    window.onhashchange = expandFromLocation;                      

// IE7 doesn't support the hashchange event so we fall back to standard polling technique
else 
    poll = window.setInterval(checkHash, 500);
    // Clean-up objects as IE7 has hideous performance
    window.onunload = function() 
        window.clearInterval(poll);
    

“缺少分号”?在哪里?

【问题讨论】:

【参考方案1】:

这里:

window.onunload = function() 
    window.clearInterval(poll);
 <--------

【讨论】:

以上是关于哪里少了分号?的主要内容,如果未能解决你的问题,请参考以下文章

MySQL命令行分号无法结束问题解决

XSLT 错误:应使用分号字符

Javascript 前端开发规范——阿里云

编程怎么区分中英文分号

请问VB中PRINT语句后面用分号和逗号有啥区别?

C++用sqlite3_open连接打开指定数据库的小问题