<!DOCTYPE html
>
<html lang
="en">
<head
>
<meta charset
="UTF-8">
<title
>title
</title
>
<script
>
console
.log(window
.location
.hash
);
console
.log(window
.location
.host
);
console
.log(window
.location
.hostname
);
console
.log(window
.location
.pathname
);
console
.log(window
.location
.port
);
console
.log(window
.location
.protocol
);
console
.log(window
.location
.search
);
onload=function () {
document
.getElementById("btn").onclick=function () {
location
.href
="http://www.jd.com";
location
.assign("http://www.jd.com");
location
.reload();
location
.replace("http://www.jd.com");
};
};
</script
>
</head
>
<body
>
<input type
="button" value
="显示效果" id
="btn"/>
</body
>
</html
>
转载请注明原文地址: https://www.6miu.com/read-5039470.html