Web API 是开发人员的梦想。
API 代表A应用磷编程我界面。
Web API 是 Web 应用程序编程接口。
浏览器 API 可以扩展 Web 浏览器的功能。
服务器 API 可以扩展 Web 服务器的功能。
所有浏览器都有一组内置的 Web API 来支持复杂的操作并帮助访问数据。
例如,Geolocation API 可以返回浏览器所在位置的坐标。
获取用户位置的纬度和经度:
const myElement = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
myElement.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
myElement.innerHTML = "Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
亲自试一试 »
您的浏览器中未内置第三方 API。
要使用这些 API,您必须从 Web 下载代码。
例子:
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!