location 位置

Posted zhaocom个人博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了location 位置相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<button type="button" onclick="newDoc()">加载新文档</button>
<br />
<body>
<script>
document.write(‘输出当前位置的路径:‘);
document.write(location.href);
document.write(‘</br>‘);
document.write(‘输出当前位置的端口:‘);
document.write(location.port);
document.write(‘</br>‘);
document.write(‘输出当前位置的协议:‘);
document.write(location.protocol);
document.write(‘</br>‘);
document.write(‘输出web主机的域名:‘);
document.write(location.hostname);
document.write(‘</br>‘);
document.write(‘返回单前页面的路径和文件名:‘);
document.write(location.pathname);
document.write(‘</br>‘);
function newDoc(){
document.location.assign(‘http://www.zhaocom.xyz‘);
}
</script>
</body>
</html>

以上是关于location 位置的主要内容,如果未能解决你的问题,请参考以下文章

Javascript:设置 location.href 与位置

Javascript:设置 location.href 与位置

Location.watchPositionAsync 未将状态设置为位置

在 iOS 的 Swift 中使用“locations array”或“manager.location.coordinate”哪一个来获取用户位置?

使用 Location Manager 和 Fused Location Provider Api 获取位置有啥区别?

在多个位置之间绘制地图路径