-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
70 lines (58 loc) · 1.56 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>jQueryMustache</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js" type="text/javascript"></script>
<script src="mustache.js" type="text/javascript"></script>
<script src="jQueryMustache.js" type="text/javascript"></script>
<script id="templateTest" type="x-tmpl-mustache">
<div id="Test">
{{#Sections}}
<h3>{{SectionId}} - {{SectionName}}</h3>
<ul>
{{#Questions}}
<li>{{QuestionId}} - {{QuestionText}}</li>
{{/Questions}}
</ul>
{{/Sections}}
</div>
</script>
<script language="javascript" type="text/javascript">
var data =
{
Sections:
[
{
SectionId: 1,
SectionName: 'Section One',
Questions: [
{
QuestionId: 1,
QuestionText: 'Question one in section one?'
},
{
QuestionId: 2,
QuestionText: 'Question two in section one?'
}
]
},
{
SectionId: 2,
SectionName: 'Section Two',
Questions: [
{
QuestionId: 1,
QuestionText: 'Question one in section two?'
}
]
}
]
};
$(function () {
$('#templateTest').mustache(data).appendTo('body');
});
</script>
</head>
<body>
</body>
</html>