jQuery 是一个快速、小巧且功能丰富的 JavaScript 库,它简化了 HTML 文档遍历、事件处理、动画和 Ajax 交互。GeoNames.Org 是一个提供地理信息的服务,可以通过 API 获取各种地理数据。
以下是一个简单的示例,展示如何使用 jQuery 和 GeoNames.Org API 迭代 JSON 对象并显示结果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GeoNames API Example</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<input type="text" id="location" placeholder="Enter location">
<button id="search">Search</button>
<div id="results"></div>
<script>
$(document).ready(function() {
$('#search').click(function() {
var location = $('#location').val();
$.ajax({
url: 'http://api.geonames.org/searchJSON',
data: {
q: location,
username: 'your_username', // Replace with your GeoNames username
maxRows: 5
},
dataType: 'jsonp',
success: function(data) {
$('#results').empty();
$.each(data.geonames, function(index, item) {
$('#results').append('<p>' + item.name + ', ' + item.countryName + '</p>');
});
},
error: function(xhr, status, error) {
console.error('Error:', error);
}
});
});
});
</script>
</body>
</html>
div
。$.ajax
发送请求到 GeoNames.Org API,传递地名和用户名(需要注册 GeoNames 账户获取)。$.each
迭代 JSON 对象中的 geonames
数组,并将结果显示在页面上。通过这种方式,你可以轻松地使用 jQuery 和 GeoNames.Org API 进行地理位置查询,并处理返回的 JSON 数据。
领取专属 10元无门槛券
手把手带您无忧上云