码迷,mamicode.com
首页 > 其他好文 > 详细

location 位置

时间:2018-04-08 10:20:47      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:hostname   doc   rip   har   http   div   ssi   pos   utf-8   

<!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 位置

标签:hostname   doc   rip   har   http   div   ssi   pos   utf-8   

原文地址:https://www.cnblogs.com/zhaocom/p/8742964.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!