欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

浏览器路径 隐藏

程序员文章站 2022-07-09 10:19:38
...

 

浏览器地址栏有时会 不想让看到当前文件的名称,所以一般会在页面中转一下

以下是简单示例(只是想到简单实现,可能还会有更好的方法)

index.html

<body>
	<script type="text/javascript">
		window.location="login.html";
	</script>
</body>

login.html

<frameset rows="*,1px" framespacing="0" border="no" style="width:100%; height:100%; margin-top:0px; overflow:auto;">
	<frame id="test" src="#" noresize frameborder="0" />
</frameset>
<body>
</body>
<script type="text/javascript">
	$(document).ready(function() {
	    window.parent.document.getElementById("test").src='content.html' ;
	});
</script>

content.html 为具体的 页面内容

用浏览器打开index页面,浏览器显示内容为 content.html 内容,地址栏路径为:http://127.0.0.1:8020/login.html

亲测!

无聊时的想法,写出来测试的,具体功能的实用性未知 = =

相关标签: 地址栏 隐藏