一些javascript崩溃ie7只是如何调试

时间:2011-06-04 07:17:55

标签: javascript jquery html dom

我最近使用了一些插件和更新的jquery,有些点击插件崩溃IE7,无论如何我可以调试它究竟是导致问题和崩溃的IE7。

我想要一些指针来调试错误的位置?

我没有得到任何线索,因为浏览器崩溃没有任何错误。

任何帮助将不胜感激。


我发现问题,它在以下位置抛出错误

removeAttr 会抛出错误,如果我评论它有效

  $('#myImgagesDiv img').each(function () {
    if ($(this).attr('myCustomattr')) {
        $(this).attr('src', $(this).attr('myCustomattr'));
        $(this).removeAttr('myCustomattr'); // code creating problem
    };
});

0 个答案:

没有答案