javascript协议 页面跳转

<html>
<head>
</head>
<body>
<script languge=javascript>
alert(window.location.pathname); --返回 /test/test.htm
alert(window.location.search); --返回 ?id=1
alert(window.location.href); --返回 http://localhost/test/test.htm?id=1
</script>
</body>
</html>
location对象
含有当前URL的信息.
属性
href 整个URL字符串.
protocol 含有URL第一部分的字符串,如http:
host 包含有URL中主机名:端口号部分的字符串.如//www.cenpok.net/server/
hostname 包含URL中主机名的字符串.如 http://www.cenpok.net ;
port 包含URL中可能存在的端口号字符串.
pathname URL中"/"以后的部分.如~list/index.htm
hash "#"号(CGI参数)之后的字符串.
search "?"号(CGI参数)之后的字符串.
二、window.location和window.open的区别

window.location = "http://www.baidu.com" 跳转后有后退功能

window.location.replace("http://www.baidu.com") 跳转后没有后退功能

window.open("http://www.baidu.com") 要新的窗口打开链接

<html>
<head>
<mce:script language="javascript"><!--

function old_page()
{
window.location = "http://www.baidu.com"
}
function replace()
{
window.location.replace("http://www.baidu.com")
}
function new_page()
{
window.open("http://www.baidu.com")
}
// --></mce:script>
</head>
<body>
<input type="button" onclick="new_page()" value="new_page"/>
<BR />
<input type="button" onclick="old_page()" value="old_page"/>
<BR />
<input type="button" onclick="replace()" value="replace"/>
</body>

你可能感兴趣的:(JavaScript)