location


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>location</title>
</head>

<body>
<input type="button" value="按钮" onclick="fun()">
<script>
function () {
location.reload()//刷新
location.replace('http://www.ifeng.com/')
location.replace('http://www.ifeng.com/')
location.assign('http://www.ifeng.com/')
}
</script>
</body>

</html>