我最近使用了一些插件和更新的jquery,有些点击插件崩溃IE7,无论如何我可以调试它究竟是导致问题和崩溃的IE7。
我想要一些指针来调试错误的位置?
我没有得到任何线索,因为浏览器崩溃没有任何错误。
任何帮助将不胜感激。
我发现问题,它在以下位置抛出错误
removeAttr 会抛出错误,如果我评论它有效
$('#myImgagesDiv img').each(function () {
if ($(this).attr('myCustomattr')) {
$(this).attr('src', $(this).attr('myCustomattr'));
$(this).removeAttr('myCustomattr'); // code creating problem
};
});