-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
36 lines (31 loc) · 824 Bytes
/
test.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
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="gogowisestyle/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="gogowisestyle/css/bootstrap.min.css">
<script type="text/javascript">
$(document).ready(function(){
// $.ajax({
// type:"GET",
// url:"questionList2.html",
// dataType:"json",
// success:function(data){
// alert(data.vos);
// },
// error:function(){
// alert("no data....");
// }
// });
$.getJSON("videoList.html?typeId=3",{"course(Id":$("#courseId").text()},function(data){
});
})
</script>
<title>bind demo</title>
<span id="courseId">222</span>
</head>
<body>
<br/>
</body>
</html>