0
您好我得到了在infobox.js「谷歌是沒有定義」這個錯誤,並顯示錯誤是infobox.prototype =新google.maps.overlayview()的錯誤,谷歌是沒有定義
infobox.prototype = new google.maps.overlayview()
這裏是我在HTML中的代碼,希望我包含圖書館的權利。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="map"></div>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB9Mpf-bWJn8ym13pLnRdHSNHymRrvOuiw&callback=initMap">
</script>
<script src="library/infobox.js" type="text/javascript"></script>
<script src="script.js"></script>
</body>
</html>
我在script.js文件中調用了google map API和infobox.js。 在此先感謝!
有兩個'async'和'defer'是無效的HTML反正。 – Bergi
您應該[不要使用'new'來創建原型對象](https://stackoverflow.com/questions/12592913/what-is-the-reason-to-use-the-new-keyword-here)。 – Bergi