Message: Invalid argument.
Line: 26
Char: 56
Code: 0
URI: http://maps.gstatic.com/intl/en_us/mapfiles/api-3/9/13/main.js
我浏览了 Stack Exchange 中的解决方案,在 Google Map api v3 - IE7 - main.js error - invalid argument (javascript)中发现了一些相关的东西
并尝试通过 jQuery 删除 div 以进行测试,如下所示
$(".gmnoprint").children().remove();
$(".gmnoprint").empty();
$('.gmnoprint').find("div").slice(1,2).hide().remove();
$('.gmnoprint').find("div").hide().remove();
$(".gmnoprint").children("div:lt(1)").remove();
$('.gmnoprint div:nth-child(1)').remove();
$(".gmnoprint").first().remove();
但没有任何选择有效。