Firebug:“无效的正则表达式标志 h”运行 YUI 压缩机后
运行 YUI 压缩机后,我收到此错误:
invalid regular expression flag h
[Break On This Error] ction(event){$(this).removeClass('lumi...cs_glb.php</b> on line <b>221</b><br/>
问题中的 JS 代码部分是:
//Form LUMI
$('input').focus(function(event){
$(this).addClass('lumi');
});
$('input').blur(function(event){
$(this).removeClass('lumi');
});
我使用 http://www.javascriptlint.com/online_lint.php 并且它没有指出错误。
有人知道出了什么问题吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在尝试了一千种方法进行调试之后,我发现 php 警告导致了错误。很难发现这种错误,因为 Firebug 调试器指向完全不同的方向。谢谢。
After trying one thousand ways to debug this, I found out that a php warning was causing the error. It is hard to find this kind of error because the Firebug debugger was pointing to a totally different direction. Thanks.