我正在获取jshint通知 第1行第10列'popUp'已定义但从未使用过。
js看起来像那样:
function popUp(e, element) {
do.something();
};
将jshint配置更改为
会很容易/* jshint unused:false */
但是我想知道是否还有其他变量未使用?
我必须改进我的函数声明还是jshint?
修改
我把它归结为两次失败,这些是在html文件onmousemove或mouseover中调用的函数......