Lorsque j'exécute ce code, j'obtiens l'erreur suivante
error:
invalid label
"html\_attributions" : \[ --------json?l...4845749 (line 2)
Quels changements dois-je effectuer pour y parvenir et où est-ce que je me trompe ?
<script src="http://www.mattcashatt.com/Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>
<input id="Company" type="text" /><input id="goButton" type="button" value="Go" /><div id="Placeholder"></div>
Voici mon script :
<script type="text/javascript">$('#goButton').click(function(){$.getJSON("https://maps.googleapis.com/maps/api/place/search/json?location=-33.8670522,151.1957362&radius=500&types="+$('#Company').val()+"&name=harbour&sensor=false&key=AIzaSyC1BIAzM34uk6SLY40s-nmXMivPJDfWgTc&callback=?",function (data){$('#Placeholder').html("");$('#Placeholder').append(<h1>Company name:</h1>" + data.name + "<br/><br/>");$('#Placeholder').append("<h1> page:</h1>" + data.types + "<br/><br/>");$('#Placeholder').append("<h1>Likes:</h1>" + data.vicinity + "<br/><br/>"); });});