-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
26 lines (25 loc) · 865 Bytes
/
new.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
// var id = location.search.split('id=')[1];
// var video = location.search.split('videoname=')[1];
// var title = location.search.split('name=')[1];
// console.log(video)
var searchParams = new URLSearchParams(window.location.search);
var id = searchParams.get('id');
var video = searchParams.get('videoname');
var names = searchParams.get('name');
localStorage.setItem('videotitle',video);
localStorage.setItem('nam', names);
localStorage.setItem('id',id);
window.location.href = "video.html";
</script>
</body>
</html>