16.5.htm

来自「精通JavaScript动态网页编程(书)」· HTM 代码 · 共 16 行

HTM
16
字号
<html>
<head><title>document.location</title></head>
<body>
<h1>document.location的详细属性</h1><p>
<script language="javascript">
<!--
//输出当前location
document.write("Current location: "+document.location);
document.write("<p>Current URL pathname: "+document.location.pathname);
document.write("<p>Current URL protocol: "+document.location.protocol);
document.write("<p>Current URL port: "+document.location.port);
//-->
</script>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?