由於某些限制,我無法在頁面加載時使用Google Map API的腳本標記。我曾嘗試添加腳本到頁面許多不同的方式,使用jQuery添加腳本標籤,像這樣包括:頁面加載後無法添加Google Map API腳本
$('head').append('<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>');
我也曾嘗試將其包含在一個更手動方式,就像這樣:
var script = document.createElement("script");
script.src = 'http://maps.google.com/maps/api/js?sensor=false';
script.type = "text/javascript";
document.head.appendChild(script);
這兩個例子都會導致整個頁面變白並且空白。有關我如何做到這一點的任何想法?
偉大的解決方案,謝謝! – Purpletoucan 2012-06-13 21:50:37