私はJsonとJqueryが初めてです。
今日、私はこの小さなコードを作成しましたが、機能しません。私はそれを正しく書いたと思いますが、どこかに小さな間違いがあることを知っています。それを理解するのを手伝ってもらえますか?
<!doctype html>
<html lang="en">
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<script>
$(document).ready(function () {
$(":button").click(function(){
var add = $("#destination").val();
$.getJSON("http://maps.googleapis.com/maps/api/geocode/json?address= + add +&sensor=false", function (data) {
var output = "<ul>";
output += "<li>"+ results.geometry.location.lat + " " + results.geometry.location.lng + "</li>";
output += "</ul>";
document.getElementById("placeholder").innerHTML = output;
});
});
});
</script>
<body>
<input type="text" id="destination" /><button type="button">Search</button><br>
<div id="placeholder"> </div>
</body>
</html>